We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to use this with the Spotify API, and I have my AuthConfig constant set as
{ responseType: 'code', clientId: '43566db1a0f74438838b74fa71d658a4', redirectUri: window.location.origin + '/index.html', loginUrl: 'https://accounts.spotify.com/authorize', }
however, the API that actually gets run is
https://accounts.spotify.com/authorize? response_type=id_token%20token& client_id=43566db1a0f74438838b74fa71d658a4& state=NWoRQ6LkhH5jt9wE5vwpYdNrqEoDcGmBlTA62tBl& redirect_uri=http%3A%2F%2Flocalhost%3A4200%2Findex.html& scope=openid%20profile& nonce=NWoRQ6LkhH5jt9wE5vwpYdNrqEoDcGmBlTA62tBl
it looks like the module isn't accepting the responseType correctly, since the API call sets response_type=id_token token.
The text was updated successfully, but these errors were encountered:
Should be fixed in the next version by #397.
Sorry, something went wrong.
That's great. Thanks for the update.
Hello bvorjohan: I too am trying to use this module with Spotify, however I am getting an Illegal Scope response. Can you share your code?
Thanks
Same here, 'openid' should be removed from scope list. but, actually still trying to figure a way to remove it
Hello bvorjohan: I too am trying to use this module with Spotify, however I am getting an Illegal Scope response. Can you share your code? Thanks
No branches or pull requests
I am trying to use this with the Spotify API, and I have my AuthConfig constant set as
however, the API that actually gets run is
it looks like the module isn't accepting the responseType correctly, since the API call sets response_type=id_token token.
The text was updated successfully, but these errors were encountered: