2012-07-06 136 views
3
FB_Graph_Response = [FB_Graph doGraphGet:@"me/friends" withGetVars:nil]; 

// NSLog(@"%@",[FB_Graph_Response.htmlResponse JSONValue]); 


arrFriendsList = [[[FB_Graph_Response.htmlResponse JSONValue]objectForKey:@"data"]retain]; 

我已使用FB圖形API(上述要求), 訪問我的應用程序的好友列表,但我沒能獲得朋友的個人資料圖片。如何得到它?如何獲取好友的個人資料石化公司FB

回答

4

獲取用戶的ID(或缺口),並從https://graph.facebook.com/idOrNick/picture獲取圖片
這可以在沒有任何形式的驗證的情況下工作。
小樣本:

NSString id = getTheIdOrNick; 
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://graph.facebook.com/%@/picture", id]]; 
NSData *data = [NSData dataWithContentsOfURL:url]; 
UIImage *image = [UIImage imageWithData:data]; 
//UIImageView *imgView = [[UIImageView alloc]init]; 
//imgView.image = image; 
相關問題