I am tyring to add scope ‘user-read-playback-state’ so I can access the user’s active device list on spotify. In Social Connection there are only two scopes/permissions available:
I have tried adding scope by doing this but to no avial. When I redirect the user to the spotify’s auth, the scope is not there in the url. The custom scope is not showing up.
<Auth0Provider
scope={"user-read-playback-state"}
domain={process.env.REACT_APP_AUTH0_DOMAIN}
clientId={process.env.REACT_APP_AUTH0_CLIENT_ID}
redirectUri={window.location.origin}>
<App />
</Auth0Provider>
Is there something I am missing here? Does that mean I can’t access anything beyond what Spotify Social has already defined for me ( only “user-read-private” and “user-read-email” ).
Thank you in advance.