JSFiddle - React, Tailwind, and code Playground
by jmpp77
JavaScript
$.ajax({
url: `https://api.spotify.com/v1/search?q=Ed+Sheeran&type=track`,
type: 'GET',
headers: { 'Authorization': 'Bearer BQDvebdtNjkIsRGDNtxDMW8F1ECqaR-viHwV0E4tzYs0eyvtRg6JzAFLs9oKEv0utHagqxyJ4QB76xbaQO5BNvtzS9VRwCwc7lCk_KoP7067NLAcZy4atbiWfuKxwW6K_QS4jhEVKOITrCpBWnQ' }
}).done(response => {
console.log('Reponse :', response);
});