我尝试使用新的共享对话框,当未安装 facebook 应用程序并且我与我自己的视图控制器共享时它工作正常:
if (!call) {
// Fallback to customized share UI
MyShareViewController *viewController = [[MyShareViewController alloc] initWithItem:object
objectType:@"objecttype"
actionType:@"namespace:action"];
[_delegate showFallbackShareDialog:viewController];
}
因此,只有在未安装 facebook 应用程序时才会调用此代码。安装后,设备会打开 facebook 应用程序,用户可以在此处键入一条消息,该消息将包含在打开图形操作中
但几秒钟后,我的设备切换回我的应用程序并出现此错误:
Error: Error Domain=com.facebook.Facebook.platform Code=102 "The operation couldn’t be completed. (com.facebook.Facebook.platform error 102.)" UserInfo=xxxx {error_code=102, action_id=xxx-xxx-xxx-xxx-xxx, error_message=Could not generate preview text, app_id=xxxxx}
我一直在网上搜索解释,但找不到什么问题。有人知道这个错误是什么意思吗?
编辑注意灰色的“发布”按钮。