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.

I'm integrating facebook into my android application, when user has logged in for first time, I'm requesting publish_actions permissions using my requestFacebookPermissions(session) method. but whenever I call this method it gives me below exception...

java.lang.UnsupportedOperationException: Session: an attempt was made to request new permissions for a session that has a pending request. 

I don't have any other request pending, might be some other internal request but How do I request permissions without getting this exception? it is ok if I have to wait till other requests are completed, but I don't know how to get whether pending requests are completed.

private void requestFacebookPermissions(Session session) {

        if (session != null && session.getState().isOpened()) {
            List<String> permissions = session.getPermissions();

            Log.i("Facebook", "Permissions Count: " + permissions.size());

            for (String string : permissions) {
                Log.i("FacebookPermissions", string);
            }

            if (!permissions.containsAll(PERMISSIONS)) {
                try {
                    session.requestNewPublishPermissions(new Session.NewPermissionsRequest(FacebookActivity.this, PERMISSIONS));
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        } else {
            return;
        }
    }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.