我想知道我是否可以查看我的内容是否真的在Facebook上分享了?
我正在使用Facebook SDK 4.1.x和FBSDKShareButton
用户必须在Facebook上授权我的应用,因此我有一个FB访问令牌。
我有这个方法来测试Share按钮
func newShareButton(){
let content : FBSDKShareLinkContent = FBSDKShareLinkContent()
content.contentURL = NSURL(string: "http://www.google.com.br")
content.contentTitle = "Test title"
content.contentDescription = "Test description"
content.imageURL = NSURL(string: "https://www.google.com.br/images/nav_logo225.png")
shareButton.shareContent = content
}
一切正常,但如果用户实际共享内容,我无法弄清楚如何获得响应。
有可能吗?我是否必须使用其他方法来获得结果?
提前致谢!