From 90d6d902ce5e074739b7c88cc40bf8257ff1f6b8 Mon Sep 17 00:00:00 2001 From: jperez Date: Tue, 17 Jun 2014 10:25:03 +0200 Subject: [PATCH] Replace URLs with final ones --- README.md | 2 +- authorization_code/app.js | 2 +- client_credentials/app.js | 2 +- implicit_grant/app.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1027a02..2e65ae9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 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: diff --git a/authorization_code/app.js b/authorization_code/app.js index d26861e..86ca512 100644 --- a/authorization_code/app.js +++ b/authorization_code/app.js @@ -4,7 +4,7 @@ * the Spotify Accounts. * * 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 diff --git a/client_credentials/app.js b/client_credentials/app.js index 771f061..634596f 100644 --- a/client_credentials/app.js +++ b/client_credentials/app.js @@ -4,7 +4,7 @@ * the Spotify Accounts. * * 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 diff --git a/implicit_grant/app.js b/implicit_grant/app.js index 03fa15d..436cd46 100644 --- a/implicit_grant/app.js +++ b/implicit_grant/app.js @@ -4,7 +4,7 @@ * the Spotify Accounts. * * 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