0

私の問題は、Facebookの壁にフィードを投稿しているときに、何らかのエラーに応答することです。たくさんの投稿を見ましたが、結果が得られませんでした。ありがとう...

protected void PublishFedd() {
    Session s = Session.getActiveSession();
    String testing="My testing app";
    Request request = Request.newStatusUpdateRequest(s,testing, new Request.Callback()
        {
            @Override
            public void onCompleted(Response response)
            {
                String checkTask=sharedpreference.getString("TASK_NAME", null);
                Log.i(TAG,"ExistingTask:"+checkTask);
                Boolean isNetworkConnected=inetDetector.isInternetConnected();
                if(isNetworkConnected)
                {
                    Log.i(TAG,"ResponseError:"+response.getError());

                if (response.getError() == null)
                {
                    SharedPreferences.Editor edit=sharedpreference.edit();
                    //edit.putString("TASK_NAME", testing);
                    edit.commit();
                    Toast.makeText(FacebookMainActivity.this, "Status updated successfully", Toast.LENGTH_SHORT).show();
                }
                else
                {

                }
                }
                else
                {
                    Toast.makeText(FacebookMainActivity.this, "Network Connection Failure", Toast.LENGTH_SHORT).show();
                }
            }
        });
    request.executeAsync();

}

エラーログは次のとおりです。

ResponseError:{HttpStatus: 403, errorCode: 200, errorType: OAuthException, errorMessage: (#200) The user hasn't authorized the application to perform this action}
4

1 に答える 1

0

許可を求めるだけです。

String[] permissions = { "offline_access", "publish_stream", "user_photos", "publish_checkins","photo_upload" };
mFacebook.authorize(MainActivity.this, permissions,
            new LoginDialogListener());
于 2013-08-29T10:07:19.107 に答える