Spotify registration error INVALID_CLIENT: Invalid URI redirect URI

I am making an application that includes an integration definition, I followed this link https://developer.spotify.com/technologies/spotify-android-sdk/tutorial/

By reference to this link, I was set to "festevo: // callback" as the URL of the callback URI

when i tried login to reveal every time i got the same error.

<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="callback" android:scheme="festevo" /> 

Please tell me why this is happening ...

Thanks.

+7
redirect android callback login spotify
source share
1 answer

I see a couple of possible things that could go wrong:

  • It is so simple that you did not save the redirect URI after you entered it. (Double check My Apps .)
  • You did not specify it correctly in your application manifest. (Double check the manifest part in the tutorial )
  • You have not changed the value of REDIRECT_URI to festevo: // callback, as indicated in the tutorial .

Hope this solves your problem!

+13
source share

All Articles