fbauth2 is missing from your Info.plist under LSApplicationQueriesSchemes and is required for iOS 9.0

后端 未结 4 675
清酒与你
清酒与你 2021-02-02 06:30

I am getting the log while login with Facebook. Kindly tell me how can i remove this log. I am working on ios8

相关标签:
4条回答
  • 2021-02-02 06:46

    If you're using v4.6.0 or higher of the SDK, you only need to add into your Info.plist:

    <key>LSApplicationQueriesSchemes</key>
    <array>
      <string>fbapi</string>
      <string>fb-messenger-api</string>
      <string>fbauth2</string>
      <string>fbshareextension</string>
    </array>
    
    0 讨论(0)
  • 2021-02-02 06:54

    just follow this link.

    <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>
    
    0 讨论(0)
  • 2021-02-02 06:55

    There is a new key, LSApplicationQueriesSchemes, and here you will need to add the list of schemes you want to are canOpenURL on.

    0 讨论(0)
  • 2021-02-02 07:10

    In your info.plist, add a row with the key LSApplicationQueriesSchemes. Make sure it is of array type. For it's only element, add the string fbauth2.

    Voila

    0 讨论(0)
提交回复
热议问题