Announcements

Help Wizard

Step 1

NEXT STEP

FAQs

Please see below the most popular frequently asked questions.

Loading article...

Loading faqs...

VIEW ALL

Ongoing Issues

Please see below the current ongoing issues which are under investigation.

Loading issue...

Loading ongoing issues...

VIEW ALL

INVALID_CLIENT: Invalid client

INVALID_CLIENT: Invalid client

export const authEndPoint = "https://accounts.spotify.com/authorize";

const clientID = "7799cdc7bf7441ca8b1be906859e0fc8";
const redirectUri = "http://localhost:3000/";

const scopes = [
    "user-read-currently-playing",
    "user-read-recently-played",
    "user-read-playback-state",
    "user-top-read",
    "user-modify-playback-state",
  ];
 
export const loginURL = `${authEndPoint}?client_id=${clientID}
  &redirect_uri=${redirectUri}&scope=${scopes.join("%20")}
  &response_type=token&show_dialog=true`;
 
I have checked client_id, redirectUri and etc. Not able to get the problem.
 
Please help me find it.
 
Thank you.
Reply
0 Replies

Suggested posts