我想從Facebook和朋友列表中獲取用戶標識,與朋友編號&資料圖片朋友的網址。我有兩個代碼示例,首先是iOS獲取用戶的Facebook ID和朋友列表與個人資料圖片朋友的網址
NSDictionary *params = @{@"fields": @"name, id, picture"};
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc] initWithGraphPath:@"/me/friends" parameters:params HTTPMethod:@"GET"];
這將返回在朋友的個人資料圖片URL好友列表中了,但是不返回用戶自己的Facebook ID。二是
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"/me" parameters:@{@"fields": @"id,name,friends, picture"}]
這將返回用戶的Facebook ID,朋友列表,但不返回朋友的個人資料圖片網址。你能幫助我嗎?我怎樣才能在一個電話中得到這兩件事?
你能告訴我你是什麼人給了 –
@Bhupat Bheda權限是許可[@ 「public_profile」,@ 「電子郵件」,@ 「user_friends」] – Zubair
可能使用範圍擴大,HTTPS的權限://developers.facebook .com/docs/graph-api/using-graph-api /#fieldexpansion – CBroe