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

Spotify app

Solved!

Spotify app

 

Plan

Premium

Country

Uk

 

My Question or Issue

I want to make a website that allows users to create a playlist through the website on Spotify. However, currently every time someone tries to make a playlist it will make it on my account as its my client id and secret. How can I fix this?

Reply

Accepted Solutions
Marked as solution

To support the Community, it is recommended to keep everything public on this platform.

 

As a reaction on a private message, I have suggested with this other Stack Overflow answer.

XimzendSpotify Star
Help others find this answer and click "Accept as Solution".
If you appreciate my answer, maybe give me a Like.
Note: I'm not a Spotify employee.

View solution in original post

12 Replies

You can make use of client side sessions/cookies with their own access token, instead of storing the access token on your server.

XimzendSpotify Star
Help others find this answer and click "Accept as Solution".
If you appreciate my answer, maybe give me a Like.
Note: I'm not a Spotify employee.

Thank you for the suggestion. Do you have any videos or instructions I can follow to help?

 

On which platform/OS does your app run, and which programming language do you use?

XimzendSpotify Star
Help others find this answer and click "Accept as Solution".
If you appreciate my answer, maybe give me a Like.
Note: I'm not a Spotify employee.

There is one thing I forgot to mention: new apps have limited capabilities in development mode, and must have an extended quota extension before other users can use your app. Other users can only test your app before the quota allocation when they are added to the allow list of your app.

You can read more about this at this page.

XimzendSpotify Star
Help others find this answer and click "Accept as Solution".
If you appreciate my answer, maybe give me a Like.
Note: I'm not a Spotify employee.

I am on windows and using python. To do what I want to do, does this require a extended quota?

Then you can have a look at this python app that uses a Flask Session Cache Handler.

 

If it is a hobby project with only (up to) 25 whitelisted users, you don't need a quota extension. If want to release it to more users, don't want to use a whitelist, or want a higher rate limit, then you do need it.

XimzendSpotify Star
Help others find this answer and click "Accept as Solution".
If you appreciate my answer, maybe give me a Like.
Note: I'm not a Spotify employee.

Do you know how to fix this?

image.png

Yes, add 

client_id="YOUR_APP_CLIENT_ID",client_secret="YOUR_APP_CLIENT_SECRET",redirect_uri="YOUR_APP_REDIRECT_URI"

in between the same (brackets) as:

spotipy.oauth2.SpotifyOAuth(scope

and fill it in with your own details.

XimzendSpotify Star
Help others find this answer and click "Accept as Solution".
If you appreciate my answer, maybe give me a Like.
Note: I'm not a Spotify employee.

Hey I'm sorry but I'm still struggling alot and I was wondering if there is anyway we could get into like a call or something like that to see if you can help? It's fine if not it would just be a lot easier for me to understand. Thank you 

 

.

Marked as solution

To support the Community, it is recommended to keep everything public on this platform.

 

As a reaction on a private message, I have suggested with this other Stack Overflow answer.

XimzendSpotify Star
Help others find this answer and click "Accept as Solution".
If you appreciate my answer, maybe give me a Like.
Note: I'm not a Spotify employee.

@CoolJude100 reported back that it worked.

XimzendSpotify Star
Help others find this answer and click "Accept as Solution".
If you appreciate my answer, maybe give me a Like.
Note: I'm not a Spotify employee.

Suggested posts