わかりましたので、ユーザーのウォールに新しい投稿を作成したいと思います。このリンクでdevelopers.facebookが提供するコードに従いましたhttps://developers.facebook.com/docs/howtos/androidsdk/3.0/publish-to-feed/
ストーリーの公開メソッドで、ログを追加して、プログラムがコード行を通過したかどうかを確認します。
private void publishStory() {
Session session = Session.getActiveSession();
if (session != null){
Log.d("INFO","session is not NULL");
// Check for publish permissions
List<String> permissions = session.getPermissions();
if (!isSubsetOf(PERMISSIONS, permissions)) {
Log.d("INFO","setting permission");
pendingPublishReauthorization = true;
Session.NewPermissionsRequest newPermissionsRequest = new Session
.NewPermissionsRequest(this, PERMISSIONS);
session.requestNewPublishPermissions(newPermissionsRequest);
return;
}
Bundle postParams = new Bundle();
postParams.putString("name", "Facebook SDK for Android");
postParams.putString("caption", "Build great social apps and get more installs.");
postParams.putString("description", "The Facebook SDK for Android makes it easier and faster to develop Facebook integrated Android apps.");
postParams.putString("link", "https://developers.facebook.com/android");
postParams.putString("picture", "https://raw.github.com/fbsamples/ios-3.x-howtos/master/Images/iossdk_logo.png");
Log.d("INFO","finish construct message");
Request.Callback callback= new Request.Callback() {
public void onCompleted(Response response) {
Log.d("INFO","on request complete!");
JSONObject graphResponse = response
.getGraphObject()
.getInnerJSONObject();
String postId = null;
try {
postId = graphResponse.getString("id");
} catch (JSONException e) {
Log.i(TAG,
"JSON error "+ e.getMessage());
}
FacebookRequestError error = response.getError();
if (error != null) {
Toast.makeText(getActivity()
.getApplicationContext(),
error.getErrorMessage(),
Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(getActivity()
.getApplicationContext(),
postId,
Toast.LENGTH_LONG).show();
}
}
};
Request request = new Request(session, "me/feed", postParams,
HttpMethod.POST, callback);
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
}
}
問題は、上記のメソッドを実行すると、認証公開許可ウィンドウがポップアップし、それを許可するまでプログラムが正常に実行され、画面が再び黒い画面に続き、不確定なプログレスバーが表示され、ウィンドウが自動的に閉じることです.
実際、logcat から、「on request complete」行を通過しないと結論付けることができます。
なぜこれが起こるのですか?どんな手掛かり?
ありがとう!