- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Plan
Premium
Country
UK
Device
Edge browser
Operating System
windows 10
My Question or Issue
I always receive this error when I run my fetch call to refresh my access_token: {error: 'invalid_client', error_description: 'Invalid client'}
I have checked my client id and secret and the refresh token being passed in is correct. I feel something must be incorrect about my refreshAccessToken() fetch function but I'm not sure what is wrong?
const refreshAccessToken = () => {
console.log("run refresh: " + refreshToken);
if (refreshToken !== "") {
console.log("refresh token: ", refreshToken);
console.log("refreshAccessToken running fetch");
fetch("https://accounts.spotify.com/api/token", {
method: "POST",
body: new URLSearchParams({
refresh_token: refreshToken,
grant_type: "refresh_token",
}),
headers: {
Authorization:
"Basic " +
Buffer.from(
spotify_client_id + ":" + spotify_client_secret
).toString("base64"),
"Content-Type": "application/x-www-form-urlencoded",
},
})
.then((response) => response.json())
.then((data) => {
if (data.error) {
console.log("returned data error: ", data);
return;
}
console.log("returned data: ", data);
setToken(data.access_token);
//setExpiresIn(data.expires_in);
})
.catch((error) => console.log("refresh token error: ", error));
}
};
Solved! Go to Solution.
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page