我想在Swift中登录Facebook。他们给予我错误AppId没有在Plist中设置,但我在plist上设置AppId。它给出了这个错误:
my 2015 -08-12 17:49:27.211 swiftcontact[16083:2102678]***由于未捕获的异常“InvalidOperationException”而终止应用程序,原因:'未找到应用程序ID。请为关键字FacebookAppID添加包含应用程序ID的字符串值到Info.plist或调用[FBSDKSettings setAppID:]。'
下面是我的plist文件的内容:
<dict>
<key>FacebookAppID</key>
<string>9023XXXXXXXXXXX</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.varun.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>FacebookDisplayName</key>
<string>BOOMaGIFT</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb9023XXXXXXXXXXX</string>
</array>
<key>CFBundleURLName</key>
<string></string>
</dict>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
</dict>
</plist>
3条答案
按热度按时间iyfamqjs1#
我也遇到了这个问题,我所做的就是在viewDidLoad中声明我的应用ID,就像FBSDKSettings.setAppID(“your_app_id”)一样。
oknwwptz2#
在我的例子中,我忘了在AppDelegate中添加Facebook的ApplicationDelegate方法
tkclm6bt3#
经过几个小时的斗争,我能够解决这个问题。
在react-native中,如果使用react-native-fbsdk-next,即使您已经在info.plist文件中添加了应用ID,也会在ios上得到错误,即在info.plist文件中找不到应用ID。它在android中可以正常工作,但在ios上无法正常工作。
要解决此问题,请确保您已在info.plist中添加facebook-app-id和app-secret,如果问题未解决,请在AppDelegate.mm文件中添加以下代码行-
步骤-
1.在ios/project/AppDelegate.mm中打开AppDelegate.mm文件
1.找到resturn是
1.在返回YES之前粘贴以下代码行-
删除旧的应用程序并重新安装它会工作。参考链接--https://github.com/thebergamo/react-native-fbsdk-next/issues/96