我正在使用 iOS 9.2 & Swift 2.1 & FBSDKVersion: 4.7.0。
我尝试使用 Graph API Explorer,当时我得到了所需的输出。
转换后的代码在 Objective-C 中,我将其更改为 Swift。
let graphRequest : FBSDKGraphRequest = FBSDKGraphRequest(graphPath: "/me", parameters: ["fields": "hometown"], HTTPMethod: "GET")
graphRequest.startWithCompletionHandler({ (connection, result, error) -> Void in
if ((error) != nil){
print("Error: \(error)")
}
else{
print("fetched details: \(result)")
})