当我选择X或Post成功时,FBSDK
(版本4.26.0)总是回调相同的方法(设备不要安装Facebook应用程序)
- (void)sharer:(id<FBSDKSharing>)sharer didCompleteWithResults:(NSDictionary *)results
结果为空
我如何知道用户分享成功或取消它?
请帮助我!
我正在使用这种方法
FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
content.contentURL = URL;
[FBSDKShareDialog showFromViewController:viewController withContent:content delegate:self];
答案 0 :(得分:0)
我收到了以下回调:
- (void)sharer:(id<FBSDKSharing>)sharer didCompleteWithResults:(NSDictionary *)results
{
NSLog(@"completed");
}
但问题是当我选择X(关闭共享界面)或Post(要成功共享内容)时,FBSDK(版本4.26.0)总是回调相同的方法didCompleteWithResults with results = empty
注意:设备未安装Facebook App