LSApplicationQueriesSchemes下的Info.plist中缺少fbauth2,iOS 9.0也是必需的

时间:2015-08-13 11:06:01

标签: ios facebook

我在使用Facebook登录时获取日志。请告诉我如何删除此日志。我正在研究ios8

4 个答案:

答案 0 :(得分:126)

info.plist中,使用密钥LSApplicationQueriesSchemes添加一行。确保它是array类型。对于它唯一的元素,添加字符串fbauth2

enter image description here

答案 1 :(得分:22)

只需点击this链接。

<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>fbauth</string>
    <string>fbauth2</string>
    <string>fb-messenger-api20140430</string>
</array>

答案 2 :(得分:8)

有一个新密钥LSApplicationQueriesSchemes,在这里你需要添加你想要的方案列表canOpenURL。

enter image description here

答案 3 :(得分:2)

如果您使用的是SDK的v4.6.0或更高版本,则只需添加到Info.plist中:

vlookup