mirror of
https://github.com/c0de-archive/spotipy.git
synced 2024-11-05 07:27:47 +00:00
clarify SPOTIPY_REDIRECT_URI registration/authentication process
This commit is contained in:
parent
1bdd8b32c3
commit
ffe64828b5
@ -98,6 +98,14 @@ Many methods require user authentication. For these requests you will need to
|
|||||||
generate an authorization token that indicates that the user has granted
|
generate an authorization token that indicates that the user has granted
|
||||||
permission for your application to perform the given task. You will need to
|
permission for your application to perform the given task. You will need to
|
||||||
register your app to get the credentials necessary to make authorized calls.
|
register your app to get the credentials necessary to make authorized calls.
|
||||||
|
|
||||||
|
Even if your script does not have an accessible URL you need to specify one
|
||||||
|
when registering your application where the spotify authentication API will
|
||||||
|
redirect to after successful login. The URL doesn't need to work or be
|
||||||
|
accessible, you can specify "http://localhost/", after successful login you
|
||||||
|
just need to copy the "http://localhost/?code=..." URL from your browser
|
||||||
|
and paste it to the console where your script is running.
|
||||||
|
|
||||||
Register your app at
|
Register your app at
|
||||||
`My Applications
|
`My Applications
|
||||||
<https://developer.spotify.com/my-applications/#!/applications>`_.
|
<https://developer.spotify.com/my-applications/#!/applications>`_.
|
||||||
@ -117,8 +125,9 @@ Call ``util.prompt_for_user_token`` method with the username and the
|
|||||||
desired scope (see `Using
|
desired scope (see `Using
|
||||||
Scopes <https://developer.spotify.com/web-api/using-scopes/>`_ for information
|
Scopes <https://developer.spotify.com/web-api/using-scopes/>`_ for information
|
||||||
about scopes) and credentials. This will coordinate the user authorization via
|
about scopes) and credentials. This will coordinate the user authorization via
|
||||||
your web browser. The credentials are cached locally and are used to automatically
|
your web browser and ask for the SPOTIPY_REDIRECT_URI you were redirected to
|
||||||
re-authorized expired tokens.
|
with the authorization token appended. The credentials are cached locally and
|
||||||
|
are used to automatically re-authorized expired tokens.
|
||||||
|
|
||||||
Here's an example of getting user authorization to read a user's saved tracks::
|
Here's an example of getting user authorization to read a user's saved tracks::
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user