Chapters: 00:00 - Intro 01:16 - Video structure 02:42 - 1. API Documentation 09:46 - 2. Authorization & Rate Limiting 18:32 - 3. Python Example 23:48 - Outro Thanks for the video man!^^
Is there any way to search Spotify by song credits? Each song has their credits as a public info, but I don't understand why Spotify doesen't let us search by "produced by"? Can that be done somehow? Thanks :)
Spotify web API provides only 30 seconds of playing an item (audio_preview_url), how to get the full content url to play the item fully. Any idea on this appreciated
Loved the video ! Curious about the way the code is structured I've never seen anything structured that way. I noticed you recommend ATBS... I'm fairly new to tech but I did take his course and am wrapping up the book including most of the practice projects. Where can I learn more about the way you structured your functions here?
Only thing I didn't understand was if __name__ = '__main__'. But searched google and found out why you added that. Also I was wondering, is there any way you can sort your playlists out in alphabetical order?
Congrats on 4k! 🍾🍾 Correct me if wrong, but this authentication method that you finally used was a temporary (1 hour or so) one right? I remember trying to use the first 2 authentication methods to create a longer 24/7 running script but I just could not wrap my head around their instructions on using the first 2 methods. And if I'm not mistaken, there's no tutorial on RUclips covering either of those 2 "long term authentication" methods either, so if you know how to do it and if it's not too much of work, a tutorial on those using just the "requests" module would be amazing! For my own 24/7 running Spotify script, I finally surrendered and went ahead with the SpotiPy library instead, which made the "long term authentication" process very easy. Is that the way to do it or is it still easy enough to do it with requests module?
Hi English, Thanks a lot, appreciate the support 🙌 Yup exactly, it doesn’t last very long. Last I checked I don’t think there was a RUclips video covering it unfortunately. OAuth is tricky for sure, it throws off a lot of people because there’s a lot of steps involved and each is needed before the next. I’ve not heard of Spotipy before that sounds cool! At first glance, I don’t think requests will be enough. That’ll help to get the access and refresh tokens but the most important bit is having a callback url which Spotify actually need to let you know a user has authorised access. Because of that you’ll need a web server. There is a way to do it locally though by opening up a local tunnel but I think probably best for a tutorial. I’ll jot that down because it’s definitely an interest topic as OAuth is used by a lot of APIs 💪👍❤️
Hello friend! I loved your explanation, I need the spotify API but with 1:30" they only provide up to 30" is there any way to get it up to 1:30" even if it's 01:00
Is the trick with getting the auth code still working? Asking cuz I got this message: {'error': {'status': 400, 'message': 'Only valid bearer authentication supported'}}
okay i understand most of what your saying but one question can any one make money off of this like how useful is are thee tools on making money im sure lot of people would like to know that part is this useful to make money or some kind of profit example like crypto and so on ?discounts
Hey i have a question I want to let the API speak with RFID cards and the RFID reader and then let it play the song on the card when I let the RFID reader read the card and then it will play a certain song
If I make an app where two person will get matched if they are listening a same song in spotify together. What kind of API is required and will that be possible? Please explain me in detail. Thank You.
MORE SPOTIFY API TUTORIALS: ruclips.net/video/2if5xSaZJlg/видео.html
Chapters:
00:00 - Intro
01:16 - Video structure
02:42 - 1. API Documentation
09:46 - 2. Authorization & Rate Limiting
18:32 - 3. Python Example
23:48 - Outro
Thanks for the video man!^^
No problem and thanks a lot for this ❤️
@@imdadcodes please paste this into your video description for Chapter Sections
Congrats on the 4K subscribers! Great work.
Thanks 😊
Love your React videos!
Thanks, I'm Dad. Good video, Dad.
No problem, son 😅
Good job on covering the most amount of information compared to the other videos I have seen on the same topic.
this was incredibly helpful for me in getting started with using the Spotify API, thank you!
Thank you 😀
Great Overiew! Thanks, very helpful.
Hey, thanks for this Video, it really helped me! But could you maybe show us how to make use of the Refresh Token? I would really appreciate it!
Fantastic tutorial, thank you
Is there any way to search Spotify by song credits? Each song has their credits as a public info, but I don't understand why Spotify doesen't let us search by "produced by"? Can that be done somehow? Thanks :)
love your energy subscribed
Thank you 😊
i think some people really might not like to waist time on something that dont pay out but i do know data is worth alot of money i do know that
This video helped. Thanks.
Fantastic Ethan, glad to hear!
Can you do this in javascript with node js?
Great tutorial. thanks!
Glad it was helpful!
i can't believe u have a video "hook" of u programming ur actually hilarious
Congratulations bro
Hi Ayush,
Thank you, means a lot 🎉
@@imdadcodes hlw really great video keep it up ....
Thank you, will do 😀
This was very helpful, thank you so much :)
I would love a tutorial on creating some code that automatically restores your playlist title and cover photo when people false report your playlists
Hi, Can you show us how to get Access token with certain scope in python code ?
Can I create playlists in my own web application? Even if it's using the 30 seconds demo....?
Thanks for this video!
Great explaining
is it possible to just link a couple of songs to a video game level to play continously on a loop while you play the level in the game app?
yes my g
Haha thanks Ross 🙌
thx for lesson !
Best bit of the video?
Spotify web API provides only 30 seconds of playing an item (audio_preview_url), how to get the full content url to play the item fully. Any idea on this appreciated
Loved the video ! Curious about the way the code is structured I've never seen anything structured that way. I noticed you recommend ATBS... I'm fairly new to tech but I did take his course and am wrapping up the book including most of the practice projects. Where can I learn more about the way you structured your functions here?
Only thing I didn't understand was if __name__ = '__main__'. But searched google and found out why you added that. Also I was wondering, is there any way you can sort your playlists out in alphabetical order?
Congrats on 4k! 🍾🍾
Correct me if wrong, but this authentication method that you finally used was a temporary (1 hour or so) one right? I remember trying to use the first 2 authentication methods to create a longer 24/7 running script but I just could not wrap my head around their instructions on using the first 2 methods. And if I'm not mistaken, there's no tutorial on RUclips covering either of those 2 "long term authentication" methods either, so if you know how to do it and if it's not too much of work, a tutorial on those using just the "requests" module would be amazing!
For my own 24/7 running Spotify script, I finally surrendered and went ahead with the SpotiPy library instead, which made the "long term authentication" process very easy. Is that the way to do it or is it still easy enough to do it with requests module?
Hi English,
Thanks a lot, appreciate the support 🙌
Yup exactly, it doesn’t last very long. Last I checked I don’t think there was a RUclips video covering it unfortunately.
OAuth is tricky for sure, it throws off a lot of people because there’s a lot of steps involved and each is needed before the next.
I’ve not heard of Spotipy before that sounds cool!
At first glance, I don’t think requests will be enough. That’ll help to get the access and refresh tokens but the most important bit is having a callback url which Spotify actually need to let you know a user has authorised access. Because of that you’ll need a web server. There is a way to do it locally though by opening up a local tunnel but I think probably best for a tutorial. I’ll jot that down because it’s definitely an interest topic as OAuth is used by a lot of APIs 💪👍❤️
@@imdadcodes thank you! Appreciate your detailed response. :)
No worries, thanks again for the support 🙌
Hello friend!
I loved your explanation, I need the spotify API but with 1:30" they only provide up to 30" is there any way to get it up to 1:30" even if it's 01:00
Great video!
Is the trick with getting the auth code still working? Asking cuz I got this message:
{'error': {'status': 400, 'message': 'Only valid bearer authentication supported'}}
i only get Error 403 insufficent client scope :/
Do i have to pay music copyrights?
Bro i have a doubt iam developing a app that should connect Spotify with It using Spotify api is this possible
I've got a question: How can I get the Audio Features of certain Spotify Tracks?
I am a complete beginner.
I got it via the console.
okay i understand most of what your saying but one question can any one make money off of this like how useful is are thee tools on making money im sure lot of people would like to know that part is this useful to make money or some kind of profit example like crypto and so on ?discounts
Hey can you please do a tutorial on how to get music reviews from Spotify api on python please
Hi sir, how is the Console creating an Auth Token without a client id and client secret? thanks
Hey i have a question I want to let the API speak with RFID cards and the RFID reader and then let it play the song on the card when I let the RFID reader read the card and then it will play a certain song
I'm planning a video for this 😉
@@imdadcodes can you send me if you have it or tips for it
Didn't do anything. Just finishes code with exit code 0. so frustrated with learning APIs
How to use single token in multiple web player
12:35 "Go Fuck Yourself" haha.
Awesome guide though, thank you.
Im not working on anything all I do is listen to music on Spotify but now I cant access my music because of the ¨jwt¨ and ¨tokens¨
I NEED HELP!!
@@quarfingdeformed1354😂LOL
how'd you get the username imdada832 for spotfiy? It doesn't let you change your username lol I'm so confused
If I make an app where two person will get matched if they are listening a same song in spotify together.
What kind of API is required and will that be possible? Please explain me in detail.
Thank You.
How does one obtain the user id?
just username all lowercase
gj man
00:12
My comment was deleted?
no
this video is outdated. the token isn't there anymore
"complete". but ok, it was ok
y ur accent white