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 have this snippet

  AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(mFacebook);
                    Bundle bundle = new Bundle();
                    bundle.putString("fields", "birthday");
                    mAsyncRunner.request("me/friends", bundle, new FriendListRequestListener());

and it works somehow, I mean I can read the ids from all my friends. But in I want to read everything how can I do that ?

    String _error = null;

        JSONObject json = Util.parseJson(response);
        final JSONArray friends = json.getJSONArray("data");

        for (int i = 0; i < friends.length(); i++) {
            Log.v("id:", "id= "+friends.get(i).toString());
         }

What should I do to get info about my friends and to read that info

I guess this is the key, this is from the example I found and it works fine

bundle.putString("fields", "birthday");

but when I put for example, doesn't works

bundle.putString("fields", "friends_relationships");

-----------------EDIT 1-------------------------

code for permissions

    mFacebook.authorize(Example.this, new String[] {"offline_access", "user_interests", "friends_interests","friends_relationships","friends_relationship_details"},new DialogListener() {
        @Override
        public void onComplete(Bundle values) {}

        @Override
        public void onFacebookError(FacebookError error) {}

        @Override
        public void onError(DialogError e) {}

        @Override
        public void onCancel() {}
   });

-------------- EDIT 2 --------------

{"error":{"message":"An active access token must be used to query information about the current user.","type":"OAuthException","code":2500}}

share|improve this question

3 Answers

up vote 1 down vote accepted

Graph API is the smart choice in most cases. To retrieve your friend information you need to collect some extended permissions from the user first. Then you can retrieve a lot more information other than the basic ones.

Following is a list of extended permissions related to friends different kind of information

friends_about_me        
friends_activities      
friends_birthday
friends_checkins        
friends_education_history       
friends_events
friends_games_activity      
friends_groups      
friends_hometown
friends_interests       
friends_likes       
friends_location
friends_notes       
friends_online_presence     
friends_photo_video_tags 
friends_photos      
friends_relationship_details        
friends_relationships
friends_religion_politics       
friends_status      
friends_subscriptions
friends_videos      
friends_website     
friends_work_history

facebook.authorize(this, new String[] {"offline_access", "user_interests", "friends_interests"},

Edit :-

If your app needs more than this basic information to function, you must request specific permissions from the user. This is accomplished by passing String[] of permissions to the authorize method. The following example shows how to ask for access to user's email address, get extended access token and check-in user at a place:

facebook.authorize(this, new String[] { "email", "publish_checkins" },

      new DialogListener() {
           @Override
           public void onComplete(Bundle values) {}

           @Override
           public void onFacebookError(FacebookError error) {}

           @Override
           public void onError(DialogError e) {}

           @Override
           public void onCancel() {}
      }
);

Look at here for more details.

Edit :-

 mAsyncRunner.request("me/friends?fields=id,name,birthday,relationship_status", new FriendListRequestListener());

JSONObject json = Util.parseJson(response);
final JSONArray friends = json.getJSONArray("data");

for(int i=0;i<friends.length();i++)
{
    JSONObject object = friends.getJSONObject(i);
    Log.i("------------------ Id",object.getString("id"));
    Log.i("------------------ Name",object.getString("name"));
    Log.i("------------------ RelationShip",object.getString("relationship_status"));
 }
share|improve this answer
I guess it sounds very stupid but where do I ask for this permissions ? in guess it is not in the manifest – Lukap Sep 17 '12 at 12:23
It declare when you create object . . . – Chirag Raval Sep 17 '12 at 12:23
this is my response {"data":[{"id":"526823709"},{"id":"15233631786"},{"id":"15723784449"},{"id":"157‌​41931327"},{"id":"16634149367"},{"id":"1000001620531161"},{"id":"1000007053915749‌​"},{"id":"1003000814124857"},{"id":"1000012811206334"},{"id":"1003001515277422"},‌​.., But I do not see any relationship status – Lukap Sep 17 '12 at 12:45
@Lukap where you add permission ? show me that code – Chirag Raval Sep 17 '12 at 12:47
You can see my edits – Lukap Sep 17 '12 at 12:52
show 2 more comments

There are separate permissions for your friends relationships. Check out the permissions documentation.

You'll want to request -

  • friends_relationships
  • friends_relationship_details
share|improve this answer

try this :

 Bundle params = new Bundle();
 params.putString("fields", "name, picture, location");
    mAsyncFacebook.request("me/friends",params, new RequestListener(){
        @Override
        public void onComplete(String response, Object object) {
            JSONObject jsonObject = null;
            try {
                jsonObject = new JSONObject(response);
            } catch (JSONException e) {
                Log.d(TAG,"Exception :"+e);
            }

        }
   }

to know about the keys see this link : https://developers.facebook.com/docs/authentication/permissions/

share|improve this answer
Where exactly are you referring to friends relationships? This will get you the name, picture and location... – Lix Sep 17 '12 at 12:23

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.