facebook ios sso得到"safari无法打开页面"的错误

Fat*_*oti 5 facebook single-sign-on ios cordova

我一直在为android和iphone开发一个应用程序,并且能够在android上实现sso但是当我尝试在iOS上实现它时,我得到了上面提到的错误:

"Safari无法打开页面,因为地址无效"

单击"确定"后,将显示错误,以便将我在Facebook上的个人信息的权限授予应用程序

有问题的链接是: m.facebook.com/dialog/oauth?refid=0

这是我的info.plist文件

<plist version="1.0">
<dict>
<key>CFBundleIconFiles</key>
<array>
    <string>icon.png</string>
    <string>icon@2x.png</string>
    <string>icon-72.png</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
    <string>UIInterfaceOrientationLandscapeLeft</string>
    <string>UIInterfaceOrientationPortraitUpsideDown</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
    <string>UIInterfaceOrientationPortrait</string>
</array>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string>icon.png</string>
<key>CFBundleIdentifier</key>
<string>com.snizilica.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSMainNibFile</key>
<string></string>
<key>NSMainNibFile~ipad</key>
<string></string>
<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLName</key>
        <string>[com.facebook.test]</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fb[xxxxxxxxxxxxxxx]</string>
        </array>
    </dict>
</array>
Run Code Online (Sandbox Code Playgroud)

其中xxxxxxxxxxx是我的app_id

igr*_*rek 6

有同样的问题.解决了它删除了app id中的方括号

               ...rfaceOrientationPortraitUpsideDown</string>
    <string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fb123456789012345</string>
        </array>
    </dict>
</array>
</dict>
</plist>
Run Code Online (Sandbox Code Playgroud)

不要在app id周围使用任何方形支架