canOpenUrl – This app is not allowed to query for scheme instragram

  1. Your LSApplicationQueriesSchemes entry should only have schemes. There’s no point to the second entry.

    <key>LSApplicationQueriesSchemes</key>
    <array>
        <string>instagram</string>
    </array>
    
  2. Read the error. You are trying to open the URL with a typo in the scheme. Fix your reference to instragram in your call to canOpenURL:.

Leave a Comment