FBの最新SDK(Swift以外)を統合しましたが、ログインは正常に機能しています。有効なJSONではないため、グラフ応答データを解析する方法を知る必要があるすべて
作業コード:
func configureFacebook()
{
login.readPermissions = ["public_profile", "email", "user_friends"];
login.delegate = self
}
func loginButton(_ loginButton: FBSDKLoginButton!, didCompleteWith result: FBSDKLoginManagerLoginResult!, error: Error!) {
print("Login buttoon clicked")
let graphRequest:FBSDKGraphRequest = FBSDKGraphRequest(graphPath: "me", parameters: ["fields":"first_name,email, picture.type(large)"])
graphRequest.start(completionHandler: { (connection, result, error) -> Void in
if ((error) != nil)
{
// Process error
print("Error: \(error)")
}
else
{
print(result)
}
})
}
出力あり:
Login button clicked
Optional({
"first_name" = KD;
id = 10154CXXX;
picture = {
data = {
"is_silhouette" = 0;
url = "https://scontent.xx.fbcdn.net/v/t1.0-1/p200x200/XXXn.jpg?oh=a75a5c1b868fa63XXX146A";
};
};
})
では、上記のデータを変換して、URLやfirst_nameなどの値を取得するにはどうすればよいですか?
また、NSDictionary
に変換しようとしてエラーが発生しました。
func loginButton(_ loginButton: FBSDKLoginButton!, didCompleteWith result: FBSDKLoginManagerLoginResult!, error: Error!) {
print("Login buttoon clicked")
let graphRequest:FBSDKGraphRequest = FBSDKGraphRequest(graphPath: "me", parameters: ["fields":"first_name,email, picture.type(large)"])
graphRequest.start(completionHandler: { (connection, result, error) -> Void in
if ((error) != nil)
{
print("Error: \(error)")
}
else
{
do {
let fbResult = try JSONSerialization.jsonObject(with: result as! Data, options: JSONSerialization.ReadingOptions.mutableContainers) as! NSDictionary
print(fbResult.value(forKey: "name"))
} catch {
print(error)
}
}
})
}
次のように簡単に実行できます。
let data:[String:AnyObject] = result as! [String : AnyObject]
print(data["first_name"]!)
スウィフト3:
安全なアンラップ&Any
の代わりにAnyObject
if let data = result as? [String:Any] {
}
Swift 5質問と問題および解決策のコード:
実装:
let graphRequest:GraphRequest = GraphRequest(graphPath: "me", parameters: ["fields":"first_name,email,picture.type(large)"])
graphRequest.start(completionHandler: { (connection, result, error) -> Void in
if ((error) != nil) {
print("Error: \(String(describing: error))")
}
else {
guard let rDic = result as? NSDictionary else {
SVProgressHUD.showError(withStatus: "facebook Did not allowed loading email, please set that while updating profile.")
return
}
print("rDic = ", rDic)
}
})
出力:
rDic = {
email = "[email protected]";
"first_name" = Mr. Me;
id = #################;
picture = {
data = {
height = 32;
"is_silhouette" = 0;
url = "https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=################&height=200&width=200&ext=################&hash=################";
width = 32;
};
};
}
PS:KDとBistaのおかげで、彼らの質問と回答は私がこれを理解するのに役立ちました。