0

あなたはこのようfriendListrespective name and id使うことでうまくいくことができますFBGraph API

  FbGraphResponse *fb_graph_response = [fbgraph doGraphGet:@"/me/friends" withGetVars:nil];

しかし、どのようname, id and pictureall friends使用するのFBGraph APIですか?

4

1 に答える 1

1

あなたはこのようfriendListにそれぞれのname, id and picture使用法とうまくやっていくことができますFBGraph API

NSDictionary *param=[NSDictionary dictionaryWithObjectsAndKeys:@"picture,name",@"fields", nil];

FbGraphResponse *fb_graph_response = [fbgraph doGraphGet:@"/me/friends" withGetVars:param];

Responseになります

data = {
   id = 100001625299089;
   name = "Name here";
   picture = {
              data = {
                      s_silhouette" = 0;
                      url = "url here";
                      };
              };
 },
    //all other friends here
 }

編集FBGraph APIドキュメントにリストされているloaction、、、birthdayおよび多くのことができます。other fields

param dictionary上記のコードを変更するだけです

 NSDictionary *param=[NSDictionary dictionaryWithObjectsAndKeys:@"picture,name,location,birthday",@"fields", nil];
于 2013-01-10T12:09:03.617 に答える