const clientCredentials = `&client_id=${process.env.SPOTIFY_CLIENT_ID}&client_secret=${process.env.SPOTIFY_CLIENT_SECRET}`;
const options = {
method: "POST",
body: `grant_type=client_credentials${clientCredentials}`,
headers: { "Content-Type": "application/x-www-form-urlencoded" },
}
const response = await fetch("https://accounts.spotify.com/api/token", options);
const json = await response.json();
console.log("RESPONSE:", json);
can confirm this works...for now