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.

How can I get facebook user id along with email,name in the following getProfileInformation(), here I would like to get the user id, and want to show in a toast message along with email and name in the run();

public void getProfileInformation() {
    mAsyncRunner.request("me", new RequestListener() {
        @Override
        public void onComplete(String response, Object state) {
            Log.d("Profile", response);
            String json = response;
            try {
                JSONObject profile = new JSONObject(json);
                // getting name of the user
                final String name = profile.getString("name");
                // getting email of the user
                final String email = profile.getString("email"); 
                runOnUiThread(new Runnable() {
                    @Override
                    public void run() { 
                        Toast.makeText(getApplicationContext(), "Name: " + name + "\nEmail: " + email , Toast.LENGTH_LONG).show();
                    }
                });
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }

        @Override
        public void onIOException(IOException e, Object state) {
        }

        @Override
        public void onFileNotFoundException(FileNotFoundException e,
                Object state) {
        }

        @Override
        public void onMalformedURLException(MalformedURLException e,
                Object state) {
        }

        @Override
        public void onFacebookError(FacebookError e, Object state) {
        }
    });
}
share|improve this question

closed as not constructive by CBroe, skolima, rene, andrewsi, Juicy Scripter Sep 24 '12 at 13:43

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 3 down vote accepted

You can pass the required fields in a Bundle in your request:

public void getProfileInformation() {
    Bundle params = new Bundle();
    params.putString("fields", "id,name,email");

    mAsyncRunner.request("me", params, new RequestListener() {
    @Override
    public void onComplete(String response, Object state) {
        Log.d("Profile", response);
        String json = response;
        try {
            JSONObject profile = new JSONObject(json);
            // getting name of the user
            final String name = profile.getString("name");
            // getting email of the user
            final String email = profile.getString("email"); 
            final Long id = profile.getLong("id");
            runOnUiThread(new Runnable() {
                @Override
                public void run() { 
                    Toast.makeText(getApplicationContext(), "ID:" + id + "\nName: " + name + "\nEmail: " + email , Toast.LENGTH_LONG).show();
                }
            });
        } catch (JSONException e) {
            e.printStackTrace();
        }
    }
...

Note that you will require the "email" permission.

share|improve this answer
is it possible to get userid like email and name as shown in code? – sri thats my name Sep 23 '12 at 18:47
Yes, you can access the id the same way you access name and email: Long id = profile.getLong("id"); – Theus Sep 23 '12 at 18:53
not accepting , asking to create a variable.? – sri thats my name Sep 23 '12 at 18:58
I do not understand what you are asking, please clarify. – Theus Sep 23 '12 at 19:01
try { JSONObject profile = new JSONObject(json); // getting name of the user final String name = profile.getString("name"); // getting email of the user final String email = profile.getString("email"); – sri thats my name Sep 23 '12 at 19:10
show 4 more comments

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