Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hi i'm developing android app with facebook SDK 3.0 new.

i tried to request 'publish_stream' permission after user login. so, in onSessionStateChange(), i put my code which request 'publsh_stream' permission, but it doesn't work.

here is my code:

private void onSessionStateChange(Session session, SessionState state, Exception exception) {

    if (state.isOpened()) {

        if (pendingPublishReauthorization &&   state.equals(SessionState.OPENED_TOKEN_UPDATED)) {
            pendingPublishReauthorization = false;
            publishFeed(userName);
        }

        m_pd.show();
        Request.executeMeRequestAsync(session, new Request.GraphUserCallback() {
            @Override
            public void onCompleted(GraphUser user, Response response) {
                if (user != null) {

                    String username=buildUserInfoDisplay(user);
                    userName=username;
                    saveAccount(username, "facebook");

                    Log.d(com.dress.folio.Constants.FACEBOOK_TAG, "login success");
                    //publishFeed(userName);
                    m_pd.dismiss();

                    h.postDelayed(irun, 1000);
                    Activity GetActivity=getActivity();
                    if(GetActivity != null) GetActivity.finish();

                }
            }
        });


        List<String> permissions = session.getPermissions();
        if (!isSubsetOf(PERMISSIONS, permissions) ) {

            pendingPublishReauthorization = true;
            //if(state == SessionState.OPENED_TOKEN_UPDATED) {
                Session.NewPermissionsRequest newPermissionsRequest = new Session.NewPermissionsRequest(this, PERMISSIONS);
                session.requestNewPublishPermissions(newPermissionsRequest);
            //}

        }



    } else if (state.isClosed()) {
        Log.i(com.dress.folio.Constants.FACEBOOK_TAG, "Logged out..." + exception);
    }
}

at the line session.requestNewPublishPermissions(newPermissionsRequest);, compiler always say error like: an attempt was made to request new permissions for a session that has a pending request.

how can i request publish_stream right after user facekbook SSO login in my app.??

share|improve this question

1 Answer

I just facing the same issue, the on onActivityResult method was overrided . So make sure calling :

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
   Session.getActiveSession().onActivityResult(this, requestCode, resultCode, data);

}

This method should call your callback after. More info here (Section 6): https://developers.facebook.com/docs/getting-started/facebook-sdk-for-android/3.0/

share|improve this answer
doesnt make much sense or answer the q clearly – ChuckKelly Apr 19 at 23:05
In my activity the method "super.onActivityResult(...)" wasn't called. so follow your code, and make sure where using facebook "Session.getActiveSession().onActivityResult" has been called. this error you get, mean like you try to login somewhere but you never consume the anwser. – Fraid Apr 22 at 11:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.