使用单点登录验证用户时,Facebook iOS Safari“无法打开页面错误”

时间:2011-02-27 03:08:29

标签: iphone ios facebook oauth

我正在围绕这个问题旋转 - 看起来Facebook有关于它的一些开放票,但我想看看是否有人遇到了我遇到的同样问题,并找到了一个临时或更好的解决方案。

我下载了Facebook的“DemoApp”,并且可以将appId放入其info.plist中:fb1234567890(其中1234567890是我的appId)。它可以通过多任务处理来验证用户身份,输入我的凭据,允许我的应用程序访问,然后在我登录时重定向回“DemoApp”(我可以请求我的信息正常)。

现在,我正在尝试将DemoApp的功能集成到我现有的应用程序中。

我可以访问登录屏幕,然后输入我的凭据。它允许我让我的应用程序访问我的个人信息 - 我点击allow并Safari处理新请求,然后在URL处返回错误消息Safari cannot open the request because the address is invalidhttp://www.facebook.com/connect/uiserver.php

但是,如果我在我的模拟器和我自己的应用程序上安装了DemoApp,它会在我成功登录后切换回DemoApp。如果我卸载DemoApp并再次使用我的应用程序,我得到Safari错误。

我可以做些什么来解决这个问题?任何帮助都会很棒;我在这里敲我的头。:(

我的info.plist

<?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>CFBundleURLTypes</key>
    <array>
        <dict>
            <key>CFBundleURLName</key>
            <string></string>
            <key>CFBundleURLSchemes</key>
            <array>
                <string>fb1234567890</string>
            </array>
        </dict>
    </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></string>
    <key>CFBundleIdentifier</key>
    <string>com.yourcompany.${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>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>1.0</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>NSMainNibFile</key>
    <string>MainWindow</string>
</dict>
</plist>

3 个答案:

答案 0 :(得分:38)

CFBundleURLTypes条目不正确。它应该是这样的:

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fb1234567890</string>
        </array>
    </dict>
</array>

答案 1 :(得分:6)

我的经历非常相似。我发现即使在干净的构建之后,我正在制作的plist变化也没有被吸收到模拟器中。通过将Hardware-&gt; Device设置更改为不同的设置,然后再返回,我能够完成它们。不知何故,这似乎导致plist更改在模拟器上注册了操作系统,而我没有做任何其他事情。不确定这是“正确”的方式,或者如果构建设置中的某些内容搞砸了,但对我来说,这确实解决了您所描述的确切问题。

答案 2 :(得分:3)

马克斯的答案引导我朝着正确的方向前进,但我的问题有点不同。由于某种原因,plist看起来像这样:

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fb1234567890
[defaults setObject:[facebook expirationDate] forKey:@&quot;FBExpirationDat</string>
        </array>
    </dict>
</array>

我刚刚删除了id之后的数据并修复了它:

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fb1234567890</string>
        </array>
    </dict>
</array>