spotify / web-api-examples

Basic examples to authenticate and fetch data using the Spotify Web API
Apache License 2.0
1.99k stars 1.67k forks source link

fixed buffer issue #92

Closed Yasar195 closed 8 months ago

Yasar195 commented 1 year ago

here i changed some of the deprecated syntax issues with javascript buffer class

from

new Buffer(client_id + ':' + client_secret).toString('base64'));

to

new Buffer.from(client_id + ':' + client_secret).toString('base64'));