本文介绍了如何在facebooksdk v4.0.1上更新FBRequest.requestForMe()?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
所以,我在iphone上申请了。我正在使用facebook登录,目前将我的facebooksdk升级到最新版本。我的一些代码碰巧有错误。下面是mycode:
So, I made application on iphone. I'm using login with facebook and currently upgrade my facebooksdk to lastest version. Some of my code happen to have an error. Below is mycode:
let request = FBRequest.requestForMe()
request.startWithCompletionHandler({ (connection, result, error) -> Void in
if error == nil {
if let userData = result as? NSDictionary {
let facebookId = userData["id"] as! String
self.user.name = userData["name"]as! String
// self._fbuser.location = userData["location"]["name"] as String
self.user.gender = userData["gender"] as! String
self.user.imgUrl = NSURL(string: NSString(format: "https://graph.facebook.com/%@/picture?type=large&return_ssl_resources=1", facebookId) as String)
self.user.isFacebookUser = true
}
} else {
if let userInfo = error.userInfo {
if let type: AnyObject = userInfo["error"] {
if let msg = type["type"] as? String {
if msg == "OAuthException" { // Since the request failed, we can check if it was due to an invalid session
println("The facebook session was invalidated")
self.onLogout("")
return
}
}
}
}
println("Some other error: \(error)")
}
})
那么如何修复它?什么代码与 FBRequest.requestme 相同或类似?
So how can I fix it ? what code that equal or similiar to FBRequest.requestme ?
推荐答案
在facebook sdk 4中获取用户信息.x swift
Get user info in facebook sdk 4.x swift
@IBAction func btnFBLoginPressed(sender: AnyObject) {
var fbLoginManager : FBSDKLoginManager = FBSDKLoginManager()
fbLoginManager .logInWithReadPermissions(["email"], handler: { (result, error) -> Void in
if (error == nil){
var fbloginresult : FBSDKLoginManagerLoginResult = result
if(fbloginresult.grantedPermissions.containsObject("email"))
{
self.getFBUserData()
fbLoginManager.logOut()
}
}
})
}
func getFBUserData(){
if((FBSDKAccessToken.currentAccessToken()) != nil){
FBSDKGraphRequest(graphPath: "me", parameters: ["fields": "id, name, first_name, last_name, picture.type(large), email"]).startWithCompletionHandler({ (connection, result, error) -> Void in
if (error == nil){
println(result)
}
})
}
}
输出:
{
email = "[email protected]";
"first_name" = Ashish;
id = 910855688971343;
"last_name" = Kakkad;
name = "Ashish Kakkad";
picture = {
data = {
"is_silhouette" = 0;
url = "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xpf1/v/t1.0-1/p200x200/10394859_900936369963275_5557870055628103117_n.jpg?oh=fefbfca1272966fc78286c36741f9ac6&oe=55C89225&__gda__=1438608579_9133f15e55b594f6ac2306d61fa6b6b3";
};
};
}
这篇关于如何在facebooksdk v4.0.1上更新FBRequest.requestForMe()?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!