You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wrote an app that allowed the user to search for a song in Rdio. I'm calling the API method called "search" and everything was working fine. However today I tried the same code (without any changes at all) and now I'm getting the following error:
All API methods require an access token. There are two types of access tokens: with or without a user. For methods labeled "Does not require user authentication" you can use the Client Credentials Grant to generate an access token without a user.
Once you've generated an access token it will expire within 12-hours. After it has expired, you need to use a refresh token or use the Client Credentials Grant to generate a new access token.
I wrote an app that allowed the user to search for a song in Rdio. I'm calling the API method called "search" and everything was working fine. However today I tried the same code (without any changes at all) and now I'm getting the following error:
If I translate the error response data I get the following:
{"error_description": "Invalid or expired access token", "error": "invalid_token"}
I don't understand why I'm getting this error if, according to the documentation, this API method "Does not require user authentication."
The text was updated successfully, but these errors were encountered: