This commit is contained in:
GaryNg 2020-11-14 05:56:56 +08:00 committed by GitHub
parent cd5cc719fe
commit c2b118a9b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ var uri = loginRequest.ToUri();
// Redirect user to uri via your favorite web-server or open a local browser window // Redirect user to uri via your favorite web-server or open a local browser window
``` ```
When the user is redirected to the generated uri, they will have to login with thei Spotify account and confirm that your application wants to access their user data. Once confirmed, they will be redirected to `http://localhost:5000/callback` and a `code` parameter is attached to the query. The redirect URI can also contain a custom protocol paired with UWP App Custom Protocol handler. This received `code` has to be exchanged for an `access_token` and `refresh_token`: When the user is redirected to the generated uri, they will have to login with their Spotify account and confirm that your application wants to access their user data. Once confirmed, they will be redirected to `http://localhost:5000/callback` and a `code` parameter is attached to the query. The redirect URI can also contain a custom protocol paired with UWP App Custom Protocol handler. This received `code` has to be exchanged for an `access_token` and `refresh_token`:
```csharp ```csharp
// This method should be called from your web-server when the user visits "http://localhost:5000/callback" // This method should be called from your web-server when the user visits "http://localhost:5000/callback"