I want to do an android app that integrates some of the deezer API features. To do so, i need to have an accessToken per user so that I can make modification on their profiles, like add playlists. Because the deezer sdk for android is deprecated I have to use the WEB api, especially Oauth. The problem is that I need to link an access token to one of my app user.
To do so I tried to define a little webserver, that i use for my redirect url, say
http://localhost:80/file
i wanted to add an argument to this url, containing the userId of my app user, like, http://localhost:80/file?userId=Id
, but it seems that deezer only access the exact URL that I put in my Application configuration in the Developper portal.
I am really stuck here, I tough that maybe, if I create an app link, the redirect URL will redirect directly to the user app, and then I will be able to link it using his profile cached in the app.
I appreciate any kind of help. Thank you