0
ロケーションを取得中firstname
、gender
、photo url
、id
ですが、場所(国、都市)は返されません。どんな考え?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
あなたは自分の場所にアクセスする許可をユーザーに求めなかったためです。 – CBroe
これを見るhttp://stackoverflow.com/questions/28211962/get-users-location-info-using-facebook-ios-sdk-in-swift –