Integrating Spotify API with YQL: Permission Issues

I’m working on a Spotify app that uses Yahoo Query Language (YQL) to grab data. The problem is I can’t get the permissions right. I’ve added the URLs I’m using in the HTML, but the app won’t even start after I put in the permissions.

The HTML works fine on its own without Spotify, so I know that’s not the issue. Here’s what I’ve got in my manifest file for permissions:

"RequiredPermissions": [
  "http://api.yahoo.com",
  "http://api.yahoo.com",
  "http://*.yql.yahoo.com/v2/public/query?",
  "http://*.datatables.org/alltableinfo.env"
]

I’m stuck and could really use some help. Has anyone run into this before? What am I missing? Thanks in advance for any tips!

hey man, i had a similar issue. try changing all those http:// to https:// in ur manifest. spotify’s pretty strict bout security. also, u might wanna remove duplicate entries. if that dont work, double check ur app’s settings in spotify dev dashboard. goodluck!

Permission issues with Spotify can sometimes be resolved by verifying that all URLs in the manifest use HTTPS rather than HTTP. In my experience, duplicate entries have also caused conflicts during authorization. Additionally, ensuring that the Redirect URI in your app matches that in the Spotify Developer Dashboard is a crucial step. If these adjustments don’t work, clearing your browser’s cache and restarting the client might help resolve any lingering problems. I found that these steps often eliminate the authorization errors encountered during integration.