0
我一直在試圖讓所有來自Facebook的照片...我提到的代碼從圖形API照片
NSMutableDictionary* parameters = [NSMutableDictionary dictionary];
[parameters setValue:@"id,name,photos" forKey:@"fields"];
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:parameters]
startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error){
NSLog(@"RESULT===%@",result);
}];
但日誌中的結果沒有顯示任何照片....好心幫
而'錯誤'是零? – Larme
yes顯示爲無 –
您是否從Facebook獲得了用戶個人資料中的照片的許可? – kb920