var SpotifyWebApi = require('spotify-web-api-node');
var spotifyApi = new SpotifyWebApi({
clientId : 'xxx',
clientSecret : 'xxx',
redirectUri : 'https://example.com/callback'
});
spotifyApi.getTrack('2q8eudK0r9ImgCB1XhFfxG').then(function(data) {
console.log(data);
});
私のコードは機能しましたが、1ヶ月間このエラーがあります。spotify-web-api-node - WebapiError:Unauthorized
(node:12824) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): WebapiError: Unauthorized
(node:12824) DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
は私が既に持っているここhttps://github.com/thelinmichael/spotify-web-api-node/issues/86 – Victor
を見てみましょうクライアントIDを再生成し、秘密のID ... –