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 playing with new Facebook Android SDK. One thing I could not figure out is how can I ask for email address. I tried following but it returned values for all fields except email address. I guess I probably have to ask permission separately for email address but not sure how I can do that if I use LoginFragment.

Request request = Request.newMeRequest(session, new GraphUserCallback() {

            @Override
            public void onCompleted(GraphUser user, Response response) {
                profilePictureView.setUserId(user.getId());
                userNameView.setText(user.getName());
            }
        });

        String NAME = "name";
        String ID = "id";
        String PICTURE = "picture";
        String EMAIL = "email";
        String FIELDS = "fields";
        String REQUEST_FIELDS = TextUtils.join(",", new String[] {ID, NAME, PICTURE, EMAIL});

        Bundle parameters = new Bundle();
        parameters.putString(FIELDS, REQUEST_FIELDS);
        request.setParameters(parameters);
        Request.executeBatchAsync(request);

Any help is appreciated. Thanks

share|improve this question

3 Answers

When you open the Session, try including "email" in the list of permissions.

If you are using LoginButton, do something like:

loginButton.setReadPermissions(Arrays.asList("email"));

If you are opening the Session yourself, do something like:

session.openForRead(new Session.OpenRequest(this).setPermissions(Arrays.asList("email")));

You can experiment with requests/permissions using: https://developers.facebook.com/tools/explorer/

Once you have logged in successfully with these permissions, then try the request again including the email field.

share|improve this answer
If you use build-in LoginFragment from SDK how can you pass the extra field? – Mohammad Haque Nov 3 '12 at 13:22
LoginFragment also has a setReadPermissions method. – rightparen Nov 5 '12 at 17:39
Iam requesting emial as Session.OpenRequest openRequest = null; openRequest = new Session.OpenRequest(LoginActivity.this); if (openRequest != null) { openRequest.setDefaultAudience(SessionDefaultAudience.FRIENDS); openRequest.setPermissions(Arrays.asList("email")); mCurrentSession.openForRead(openRequest); } but I am getting null for Log.d("user email", (String) user.getProperty("email") ); – user1767260 Mar 4 at 12:53

Do the following:

After setting the permissions as above access the email via: user.asMap().get("email"));

See the example below

@Override
protected void onSessionStateChange(SessionState state, Exception exception) {

    // user has either logged in or not ...
    if (state.isOpened()) {
        // make request to the /me API
        Request request = Request.newMeRequest(this.getSession(),
                new Request.GraphUserCallback() {
                    // callback after Graph API response with user object

                    @Override
                    public void onCompleted(GraphUser user,
                            Response response) {
                        // TODO Auto-generated method stub
                        if (user != null) {
                            TextView etName = (TextView) findViewById(R.id.etName);

                            etName.setText(user.getName() + ","
                                    + user.getUsername() + ","
                                    + user.getId() + "," + user.getLink()
                                    + "," + user.getFirstName()+ user.asMap().get("email"));

                        }
                    }
                });
        Request.executeBatchAsync(request);
    }
}
share|improve this answer
1  
Can we get the profile picture as well using this method? (I mean by using a Request class) – ecem Feb 28 at 19:13

I found a solution: and it works

LoginFragment loginFragment = new LoginFragment() {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
                View v = super.onCreateView(inflater, container, savedInstanceState);
                setReadPermissions(Arrays.asList("email"));
                return v;
            }
        };
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.