44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
/**
|
|
* This is an example of a basic node.js script that performs
|
|
* the Client Credentials oAuth2 flow to authenticate against
|
|
* the Spotify Accounts.
|
|
*
|
|
* For more information, read
|
|
* https://developer.spotify.com/web-api/authorization-guide/#client_credentials_flow
|
|
*/
|
|
|
|
var request = require('request'); // "Request" library
|
|
|
|
var client_id = '03ffe0cac0a0401aa6673c3cf6d02ced'; // Your client id
|
|
var client_secret = 'a57c43efb9644574a96d6623fb8bfbc2'; // Your client secret
|
|
var redirect_uri = 'http://localhost:8888/callback'; // Your redirect uri
|
|
|
|
// your application requests authorization
|
|
var authOptions = {
|
|
url: 'https://accounts.spotify.com/api/token',
|
|
headers: {
|
|
'Authorization': 'Basic ' + (new Buffer(client_id + ':' + client_secret).toString('base64'))
|
|
},
|
|
form: {
|
|
grant_type: 'client_credentials'
|
|
},
|
|
json: true
|
|
};
|
|
|
|
request.post(authOptions, function(error, response, body) {
|
|
if (!error && response.statusCode === 200) {
|
|
|
|
// use the access token to access the Spotify Web API
|
|
var token = body.access_token;
|
|
var options = {
|
|
url: 'https://api.spotify.com/v1/users/jmperezperez',
|
|
headers: {
|
|
'Authorization': 'Bearer ' + token
|
|
},
|
|
json: true
|
|
};
|
|
request.get(options, function(error, response, body) {
|
|
console.log(body);
|
|
});
|
|
}
|
|
});
|