Facebook App Invite无法正常工作

时间:2017-04-14 13:14:32

标签: ios iphone facebook facebook-ios-sdk

我正在尝试添加facebook App Invite:

let content:FBSDKAppInviteContent = FBSDKAppInviteContent()
        content.appLinkURL = URL(string: "https://fb.me/...")
        content.appInvitePreviewImageURL = URL(string: "http://...")

        let dialog = FBSDKAppInviteDialog()
        dialog.content = content
        dialog.delegate = self
        dialog.fromViewController = self
        dialog.show()

相关Info.plist键:

<key>FacebookAppID</key>
<string>...</string>
<key>FacebookDisplayName</key>
<string>Blanket</string>
<key>LSApplicationQueriesSchemes</key>
<array>
    <string>fbapi</string>
    <string>fbapi20130214</string>
    <string>fbapi20130410</string>
    <string>fbapi20130702</string>
    <string>fbapi20131010</string>
    <string>fbapi20131219</string>
    <string>fbapi20140410</string>
    <string>fbapi20140116</string>
    <string>fbapi20150313</string>
    <string>fbapi20150629</string>
    <string>fbapi20160328</string>
    <string>fbauth</string>
    <string>fbauth2</string>
    <string>fb-messenger-api20140430</string>
    <string>fb-messenger-platform-20150128</string>
    <string>fb-messenger-platform-20150218</string>
    <string>fb-messenger-platform-20150305</string>
    <string>fbapi</string>
    <string>fb-messenger-api</string>
    <string>fbauth2</string>
    <string>fbshareextension</string>
</array>

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLName</key>
        <string>com.my.app</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fb...</string>
            <string>myappscheme</string>
        </array>
    </dict>
</array>

当我运行代码时,会打开safari窗口,并在显示加载微调器后关闭。

返回此错误:

"Error: Optional(Error Domain=com.facebook.sdk.core Code=2 \"(null)\" UserInfo={com.facebook.sdk:FBSDKErrorDeveloperMessageKey=Invalid method_results., com.facebook.sdk:FBSDKErrorArgumentNameKey=method_results})"

Facebook应用程序安装在设备上,并在Facebook应用程序中打开共享对话框。

当我尝试调试时,[FBSDKApplicationDelegate _handleBridgeAPIResponseURL:sourceApplication:]响应网址为fb...://bridge/appinvites?version=web&bridge_args=%7B%22app_name%22%3A%22...%22%2C%22action_id%22%3A%...%22%7D&error=%7B%22error%22%3A%22server_error%22%2C%22error_description%22%3A%22Error%20retrieving%20application%20configuration.%22%7D

相关错误:

{"error":"server_error","error_description":"Error retrieving application configuration."}

我不确定该错误的含义,是facebook应用程序配置错误,还是iOS应用程序。

相同的邀请适用于Android,iOS应用程序已发布,并且已配置有效的iTunes URL。

2 个答案:

答案 0 :(得分:2)

我可以根据上面的代码邀请朋友,所以请检查Facebook应用ID,看看是否输入正确。并查看您是否在p列表中提供了正确的URL标识符和url方案。

答案 1 :(得分:0)

你可以尝试看看它是否适用于wifi。 Facebook App Invite中似乎有一个错误,它在移动数据中不起作用,但在使用wifi时有效(得到与上面相同的错误。)

https://developers.facebook.com/bugs/798217780334522/

如果它在wifi中工作且无法在移动数据中工作,请通过上述链接进行报告以解决此问题。

相关问题