Replace URLs with final ones

This commit is contained in:
jperez 2014-06-17 10:25:03 +02:00
parent b7f021c9ed
commit 90d6d902ce
4 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# Spotify Accounts Authentication Examples # Spotify Accounts Authentication Examples
This project contains basic demos showing the different oAuth2 flows for [authenticating against the Spotify Web API](https://developer.spotify.com/spotify-web-api/authorization-guide/). This project contains basic demos showing the different oAuth2 flows for [authenticating against the Spotify Web API](https://developer.spotify.com/web-api/authorization-guide/).
These examples cover: These examples cover:

View file

@ -4,7 +4,7 @@
* the Spotify Accounts. * the Spotify Accounts.
* *
* For more information, read * For more information, read
* https://developer.spotify.com/spotify-web-api/authorization-guide/#authorization_code_flow * https://developer.spotify.com/web-api/authorization-guide/#authorization_code_flow
*/ */
var express = require('express'); // Express web server framework var express = require('express'); // Express web server framework

View file

@ -4,7 +4,7 @@
* the Spotify Accounts. * the Spotify Accounts.
* *
* For more information, read * For more information, read
* https://developer.spotify.com/spotify-web-api/authorization-guide/#client_credentials_flow * https://developer.spotify.com/web-api/authorization-guide/#client_credentials_flow
*/ */
var request = require('request'); // "Request" library var request = require('request'); // "Request" library

View file

@ -4,7 +4,7 @@
* the Spotify Accounts. * the Spotify Accounts.
* *
* For more information, read * For more information, read
* https://developer.spotify.com/spotify-web-api/authorization-guide/#implicit_grant_flow * https://developer.spotify.com/web-api/authorization-guide/#implicit_grant_flow
*/ */
var express = require('express'); // Express web server framework var express = require('express'); // Express web server framework