ここ数日間、facebook-sdk-for-android-wall に頭をぶつけていて、助けが必要です。何が問題なのか、代わりに何をすべきか、欠落している状態を確認する方法が見つかりません。
私の Android アプリはトラックを記録しており、トラックの場合、ユーザーはトラックの概要を自分の Facebook タイムラインに投稿するオプションを選択する必要があります。私はそれを幸せな流れとして機能させましたが、インターネット接続がないなどのさまざまなシナリオをテストすると、「セッション: 保留中の要求を持つセッションを再承認しようとしました"-アクセス許可を再認証しようとすると例外が発生します (インターネット接続が復元された場合でも)。AndroidおよびSSO用のfacebook SDKを使用しています。
package com.test;
import java.io.Fil...
...
public class FaceBookUtil {
public interface FacebookPostCallback {
void onComplete(String postId);
void onError(Exception e);
void onError();
}
private static final List<String> PERMISSIONS = Arrays.asList("publish_actions", "publish_stream");
private static final int REAUTH_ACTIVITY_CODE = 100;
public static void postToFaceBook(final Track track, final Activity activity, final FacebookPostCallback postCallback) {
try {
Session session = initFacebookSession(activity.getApplicationContext());
Session.setActiveSession(session);
StatusCallback statusCallback = new StatusCallback() {
@Override
public void call(Session session, SessionState state, Exception exception) {
try {
// Check for publish permissions
List<String> permissions = session.getPermissions();
if (!isSubsetOf(PERMISSIONS, permissions)) {
Session.ReauthorizeRequest reauthRequest = new Session
.ReauthorizeRequest(activity, PERMISSIONS)
.setRequestCode(REAUTH_ACTIVITY_CODE);
session.reauthorizeForPublish(reauthRequest); //Here's where it breaks and the exceptions is thrown.
return;
}
Bundle postParams = new Bundle();
postParams.putString("name", "Facebook post test");
postParams.putString("caption", "Just a test");
postParams.putString("description", "A description");
postParams.putString("link", "http://www.google.com/");
Request.Callback reqCallback = new Request.Callback() {
public void onCompleted(Response response) {
String postId = null;
try {
FacebookException error = response.getError();
if (error != null)
throw error;
JSONObject graphResponse = response.getGraphObject().getInnerJSONObject();
postId = graphResponse.getString("id");
if (postId != null)
postCallback.onComplete(postId);
} catch (Exception e) {
postCallback.onError();
}
if (postId == null)
postCallback.onError();
}
};
Request postRequest = new Request(session, "me/feed", postParams, HttpMethod.POST, reqCallback);
RequestAsyncTask task = new RequestAsyncTask(postRequest);
task.execute();
} catch (Exception e) {
postCallback.onError(e);
}
}
};
if (session.getState().equals(SessionState.CREATED_TOKEN_LOADED))
session.openForRead(new Session.OpenRequest(activity).setCallback(statusCallback));
else if (!session.isOpened() && !session.isClosed()) {
OpenRequest req = new Session.OpenRequest(activity);
req.setCallback(statusCallback);
session.openForRead(req);
} else {
Session.openActiveSession(activity, true, statusCallback);
}
} catch (Exception e) {
postCallback.onError(e);
}
}
private static boolean isSubsetOf(Collection<String> subset, Collection<String> superset) {
for (String string : subset) {
if (!superset.contains(string)) {
return false;
}
}
return true;
}
private static Session initFacebookSession(Context context) {
Session session = Session.getActiveSession();
if (session != null)
return session;
/*
if (savedInstanceState != null)
session = Session.restoreSession(this, null, sessionStatusCallback, savedInstanceState);
*/
if (session == null)
session = new Session(context);
return session;
}
}
Android SDK にデバッグすると、pendingRequest が null ではないため、Session クラスの reauthorize メソッドによって例外がスローされることがわかりますが、その理由、設定場所、または確認方法がわかりません。削除してください。または、私は何をすべきですか?
private void reauthorize(ReauthorizeRequest reauthorizeRequest, AuthorizationType authType) {
validatePermissions(reauthorizeRequest, authType);
validateLoginBehavior(reauthorizeRequest);
if (reauthorizeRequest != null) {
synchronized (this.lock) {
if (pendingRequest != null) { //Here's where the pendingRequest is already set and causes the exception...
throw new UnsupportedOperationException(
"Session: an attempt was made to reauthorize a session that has a pending request.");
}
switch (this.state) {
case OPENED:
case OPENED_TOKEN_UPDATED:
pendingRequest = reauthorizeRequest;
break;
default:
throw new UnsupportedOperationException(
"Session: an attempt was made to reauthorize a session that is not currently open.");
}
}
authorize(reauthorizeRequest);
}
}
結果なしで例外をグーグルで検索しました。どんな助けも大歓迎です。
余談ですが、おそらく FacebookUtil.postToFaceBook メソッド全体をリファクタリングできますが、テスト中は読みやすくするために 1 つのメソッドにまとめました。