我正在從圖中的Facebook登錄使用FBSDKGraphRequest
用戶數據..獲取國家名稱和時區
但不知道如何從數據中獲得時區&只有國名..
我編碼到現在是如下:
在結果FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:[NSString stringWithFormat:@"/%@",result.token.userID]
parameters:@{ @"fields" : @"id, name, email, first_name, hometown, last_name, location" }
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) {
[self handleRequestCompletionWithResult:result error:error];
}];
在這裏我得到的數據.. !!!
請求Facebook的權限是什麼 –
loginButton.readPermissions = @ [@「public_profile」,@「email」,@「user_friends」,@「user_hometown」,@「user_location」]; – Simmy
如果需要,我可以添加更多的權限.. !!! – Simmy