2017-03-07 9 views
0

ロケーションを取得中firstnamegenderphoto urlidですが、場所(国、都市)は返されません。どんな考え?Facebook Graph APIは場所を返しません、なぜですか?

FBLoginView.readPermissions = ["public_profile"] 
let gr2 : FBSDKGraphRequest = FBSDKGraphRequest(graphPath: "me", parameters: ["fields": "id,gender,first_name,location,picture.type(large)"]) 
let _location = data["location"] as? String // this is nil 
+0

あなたは自分の場所にアクセスする許可をユーザーに求めなかったためです。 – CBroe

+0

これを見るhttp://stackoverflow.com/questions/28211962/get-users-location-info-using-facebook-ios-sdk-in-swift –

答えて

0

アプリからのアクセス許可を要求しているときに、範囲にuser_locationを追加してください。

関連する問題