我使用Facebook SDK对于iOS,它在iOS 10上工作正常,但当我将手机升级到iOS 11时,facebook分享不再有用了。请提前帮助,谢谢。
答案 0 :(得分:4)
不幸的是,随着iOS 11的更新,社交网络服务(Facebook,Twitter,Vimeo和Flickr)已经被删除了,这些服务过去曾进行系统级集成的单点登录。
而是在iOS 10及之前使用此代码段:
let viewController = SLComposeViewController(forServiceType: SLServiceTypeFacebook)
viewController.add(imageView.image!)
viewController.add(URL(string: "http://www.example.com/"))
viewController.setInitialText("Text to post!")
self.present(viewController!, animated: true, completion: nil)
您可以使用 FBSDKGraphRequest在Facebook上发布。
首先从Facebook Developer Console创建您的应用。之后,设置您的Xcode项目(按照此处的说明进行操作:https://developers.facebook.com/docs/ios/getting-started/)。
用户需要在发布前记录:
let login: FBSDKLoginManager = FBSDKLoginManager()
login.logIn(withPublishPermissions: ["publish_actions"], from: self) { (result, error) in
if (error != nil) {
print("publish_actions: \(error!)")
} else if (result?.isCancelled)! {
print("publish_actions: Canceled")
} else if (result?.grantedPermissions.contains("publish_actions"))! {
print("publish_actions: permissions granted: \(String(describing: result?.token.tokenString))")
UserDefaults.standard.set(result?.token.tokenString, forKey: "facebook_token")
}
}
记录后保存令牌并使用它通过FBSDKGraphRequest发布消息:
FBSDKGraphRequest.init(graphPath: "me/feed",
parameters: ["message": "text to post on Facebook"],
tokenString: "token",
version: "v2.10",
httpMethod: "POST").start(completionHandler: { (connection, result, error) -> Void in
if let error = error {
print("Error: \(error)")
} else {
print("Posted successfully!")
}
})
希望得到这个帮助。
答案 1 :(得分:3)
iOS 11与Facebook Share(在我的情况下,Objective-c中的FBSDKShareDialog)的问题通过升级到最新的Facebook API框架来解决。通过pod,目前如下:
Podfile
pod 'FBSDKCoreKit', '~> 4.27.0'
pod 'FBSDKLoginKit', '~> 4.27.0'
pod 'FBSDKShareKit', '~> 4.27.0'
在命令提示符下,使用" pod搜索"将显示最新版本的pod。例如,pod搜索FBSDKShareKit