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 need user email address, I want to set email permission inside facebook sdk.

Can you give me some idea to do this.

my code:

 @Deprecated
    public void authorize(Activity activity, String[] permissions, final DialogListener listener) {
        permissions =new String[] {"offline_access","video_upload","publish_stream","user_photos","email","read_friendlists"};      
        authorize(activity, permissions, DEFAULT_AUTH_ACTIVITY_CODE, SessionLoginBehavior.SSO_WITH_FALLBACK, listener);
    }

i done like this. this is not working.

share|improve this question

3 Answers

up vote 3 down vote accepted

Try this:

you set the permission like 
String[] Permissions = {"email", "offline_access"};
share|improve this answer
this is working for u? – Tamilarasi Feb 6 at 13:37
where i want to set permission. – Ramachandran Feb 6 at 13:37
you set this permission into your login screen and call like this mLoginButton.init(this, AUTHORIZE_ACTIVITY_RESULT_CODE, Utility.mFacebook, permissions); – Tamilarasi Feb 6 at 13:41
mLoginButton.init is not available. init method not available. – Ramachandran Feb 6 at 13:44
you use pass parameter permission facebook authorize method like this mFacebook.authorize(mActivity, mPermissions, mActivityCode, new LoginDialogListener()); – Tamilarasi Feb 6 at 13:47
show 1 more comment

Change your authorize code like below:

 public void authorize(Activity activity, String[] permissions,
        int activityCode, final DialogListener listener) {

    boolean singleSignOnStarted = false;

    mAuthDialogListener = listener;

    // Prefer single sign-on, where available.
    if (activityCode >= 0) {
        singleSignOnStarted = startSingleSignOn(activity, mAppId,
                permissions, activityCode);
    }
    // Otherwise fall back to traditional dialog.
    if (!singleSignOnStarted) {
        startDialogAuth(activity, permissions);
    }
}
share|improve this answer
have you get it? – Tamilarasi Feb 6 at 14:03
startSingleSignOn and startDialogAuth method is not available getting error. – Ramachandran Feb 6 at 14:12
have got app id and developer account – Tamilarasi Feb 6 at 14:27
i hope this link will be help to u stackoverflow.com/questions/12637785/… – Tamilarasi Feb 6 at 14:30

I have checked this question, it is pretty simple. Here is the code what you wanted:

Session currentSession = Session.getActiveSession();
    if (currentSession == null || currentSession.getState().isClosed()) {
        Session session = new Session.Builder(context).build();
        Session.setActiveSession(session);
        currentSession = session;
    }

    if (currentSession.isOpened()) {
        // Do whatever u want. User has logged in

    } else if (!currentSession.isOpened()) {
        // Ask for username and password
        OpenRequest op = new Session.OpenRequest((Activity) context);

        op.setLoginBehavior(SessionLoginBehavior.SUPPRESS_SSO);
        op.setCallback(null);

        List<String> permissions = new ArrayList<String>();
        permissions.add("publish_stream");
        permissions.add("user_likes");
        permissions.add("email");
        permissions.add("user_birthday");
        op.setPermissions(permissions);

        Session session = new Builder(MainActivity.this).build();
        Session.setActiveSession(session);
        session.openForPublish(op);
    }

Now, on onActivityResult see if session is open and do your work there, like getting userID, access_token and all that.

Hope this will help you in some manner.

share|improve this answer

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.