很抱歉问了同样的问题,这已经在 stackove 流程中了。我正在尝试将 Facebook 集成到我的 iPhone 应用程序中。为此,我遵循了https://developers.facebook.com/docs/mobile/ios/build/#sdk。每当我在我的应用程序中单击 Facebook 按钮时,它都会正确显示登录屏幕。但是,每当我单击登录按钮时,都会收到警报,因为“Safari 无法打开页面,因为地址无效”。阅读有关堆栈溢出的许多问题,这些问题与我的问题有关,但问题尚未解决。即使我已经正确添加了 SSO。非常感谢您的帮助
我认为我的信息列表也是正确的。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb432606956784814</string>
</array>
</dict>
</array>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>VJILConsultingLtd.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMainNibFile</key>
<string>MainWindow</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
我仍然没有得到它。我不明白问题是什么。