mirror of
https://gitlab.com/deeplydrumming/DeemixFix.git
synced 2026-01-15 16:32:59 -03:00
56 lines
1.8 KiB
JavaScript
56 lines
1.8 KiB
JavaScript
const SpotifyWebApi = require('../');
|
|
|
|
/*
|
|
* This example shows how to search for a track. The endpoint is documented here:
|
|
* https://developer.spotify.com/documentation/web-api/reference/search/
|
|
|
|
* Since authorization is now required, this example retrieves an access token using the Authorization Code Grant flow,
|
|
* documented here: https://developer.spotify.com/documentation/general/guides/authorization-guide/#authorization-code-flow
|
|
*
|
|
* Obtain the `authorizationCode` below as described in the Authorization section of the README.
|
|
*/
|
|
|
|
const authorizationCode = '<insert authorization code>';
|
|
|
|
/**
|
|
* Get the credentials from Spotify's Dashboard page.
|
|
* https://developer.spotify.com/dashboard/applications
|
|
*/
|
|
const spotifyApi = new SpotifyWebApi({
|
|
clientId: '<insert client id>',
|
|
clientSecret: '<insert client secret>',
|
|
redirectUri: '<insert redirect URI>'
|
|
});
|
|
|
|
spotifyApi
|
|
.authorizationCodeGrant(authorizationCode)
|
|
.then(function(data) {
|
|
console.log('Retrieved access token', data.body['access_token']);
|
|
|
|
// Set the access token
|
|
spotifyApi.setAccessToken(data.body['access_token']);
|
|
|
|
// Use the access token to retrieve information about the user connected to it
|
|
return spotifyApi.searchTracks('Love');
|
|
})
|
|
.then(function(data) {
|
|
// Print some information about the results
|
|
console.log('I got ' + data.body.tracks.total + ' results!');
|
|
|
|
// Go through the first page of results
|
|
var firstPage = data.body.tracks.items;
|
|
console.log('The tracks in the first page are (popularity in parentheses):');
|
|
|
|
/*
|
|
* 0: All of Me (97)
|
|
* 1: My Love (91)
|
|
* 2: I Love This Life (78)
|
|
* ...
|
|
*/
|
|
firstPage.forEach(function(track, index) {
|
|
console.log(index + ': ' + track.name + ' (' + track.popularity + ')');
|
|
});
|
|
}).catch(function(err) {
|
|
console.log('Something went wrong:', err.message);
|
|
});
|