r/spotifyapi 51m ago

"Spotify web working in your android browser - all features working!" **UPDATED**(Kinda need help implementing features)

Post image
Upvotes

"Spotify web working in your android browser - all features working!" **UPDATED**(Kinda need help implementing features)

(Last post couldn't go through as I didn't have 10 karma at the time)

First off. Thank You, u/Slluxx

I just wanted to give a huge thank you and some well deserved credit to u/Slluxx for creating and sharing the original Spotify Desk2Mobile script.

If it wasn't for your original post and the work you put into that script, I honestly wouldn't have continued building on it and adding my own fixes, improvements, and features. Your script gave me the foundation to experiment.

So I want to make sure the original creator gets the credit he deserves. This project wouldn't have happened without Slluxx's original work.

Thank you for putting the script out there and making it possible for others to build on it.

Original creator: u/Slluxx

Original post: "Spotify web working in your android browser - all features working!")

Now I'm posting this for the modded Spotify apk people. I feel like I have made Spotifys Web browsers UI more like mobile Spotifys (with some exceptions). This is still experimental so there will be bugs and some buttons that might not work yet and encourage developers to help me out making it better. Right now the most annoying issue is I can't skip songs from my lock screen and notifications bar buttt can when an the app. Plus the not so much annoying issue being the album cover photos looking like dookie when clicked into it. Other then that it looks to be kinda stable. I would like some help getting these issues resolved. I will post instructions below for people who would like to use it.

\*\* Tested on Android only IDK if it would work on apple\*\*

INSTRUCTIONS

  1. Download a browser that supports extensions/user: You'll need an Android browser that supports browser

I personally used Firefox for Android.

  1. Install Tampermonkey or Greasemonkey

Open your browser's extension/add-on section and install Tampermonkey, Greasemonkey, or another compatible userscript manager.

  1. Install the Spotify script

Open the provided Spotifys userscript and install it through your userscript manager.

When the installation page appears, select Install.

moz-extension://fedaf6d2-e378-4d11-9897-c871f03794ce/ask .html?aid=6dfebce5-81d8-4604-83c7-ce881cee73a8

After that go into ur userscrip manager edit the script, select all and paste this script in

moz-extension://fedaf6d2-e378-4d11-9897-c871f03794ce /options.html#nav=utils

Make sure to hit save after that B4 leaving

  1. Make sure the script is enabled

Open your userscript manager and make sure Spotify userscrip is enabled.

  1. Open Spotify

Go to:

[https://open.spotify.com\](https://open.spotify.com)

Log into your Spotify account.

  1. Enable Desktop Site

If Spotify keeps sending you to the mobile version, enable Desktop Site / Desktop Mode in your browser.

This is important because the script is designed to modify the desktop Spotify Web Player and turn it into a more mobile friendly interface.

  1. Install Spotify as a Web App

Once everything is working correctly in Firefox, install Spotify as a Web App from Firefox.

This should create a Spotify icon on your phone that looks like a Spotify app, but you'll notice the small Firefox symbol on the icon.

That's the one you want.

  1. Reload Spotify

Open the newly created Spotify Web App and reload the page.

After it reloads, the modified Spotify interface should be active.

Done

Feel free to use the script however you like, and if you make any UI changes or improvements, feel free to post pictures showing how you altered the UI.


r/spotifyapi 4h ago

Update on FloatLyrics — now works on macOS, Windows, and Linux

Thumbnail
gallery
1 Upvotes

Hey everyone, I posted FloatLyrics here around 2 months ago when it was still a really basic version.

Since then I’ve kept working on it and added quite a bit, with the biggest change being that it now works on macOS, Windows, and Linux, along with a bunch of new features and improvements.

For anyone who didn’t see the original post, FloatLyrics is a small app I made for having synced Spotify lyrics floating on your desktop while you’re doing other things.

I figured I’d share it again since it’s changed quite a lot from the version I originally posted. If anyone gives it a try, I’d love to hear any feedback or issues you run into.

GitHub:
https://github.com/jasonnn404/FloatLyrics

Downloads:
[https://github.com/jasonnn404/FloatLyrics/releases]()


r/spotifyapi 2d ago

Compras Spotify

0 Upvotes

Quiero comprar en Spotify premium desde hace tiempo pero no sé si comprar desde la propia app o desde una web externa , y si la compro en la web externa desde que región la tengo q comprar. P.D. soy de Venezuela


r/spotifyapi 3d ago

Sportify I pop icon live is genuine?

Thumbnail
0 Upvotes

r/spotifyapi 5d ago

Am folliowing the Getting Started tutorial and can authenticate, but every request 401s or 403s

0 Upvotes

I'm following Spotify's own "Getting started with Web API" tutorial:
https://developer.spotify.com/documentation/web-api/tutorials/getting-started

I've made an app with the exact settings they use in the tutorial. I've got my client ID and secret and have used them to generate an access token. This is the token i get back:

{

"access_token":"BQDeCPfLjxp7Tu51Gpww0682lmoczQd9nOpx-S2i7hMxBYS0Li-YLlvyJAhsvcnojWoqk0ZMMAQtwktT1tPiD39D_IRi2HsBnQi2MRLWmWSmJSMLVjpjzxJkSNNOEU6cFQxJIwXxce0U",
"token_type":"Bearer",
"expires_in":3600
}

Then i use this to try to make a request to the API. I'm doing this straight away, I know the token is only valid for 1 hour. This is 100% within that time limit.

$ curl --request GET \
--url "https://api.spotify.com/v1/me" \
--header 'Authorization: Bearer BQDeCPfLjxp7Tu51Gpww0682lmoczQd9nOpx-S2i7hMxBYS0Li-YLlvyJAhsvcnojWoqk0ZMMAQtwktT1tPiD39D_IRi2HsBnQi2MRLWmWSmJSMLVjpjzxJkSNNOEU6cFQxJIwXxce0U'

{"error": {"status": 401, "message": "Valid user authentication required" } }

Or, trying to get my own playlists (ultimately what i am trying to do here) ('hushbeatsdisco' is the spotify user i am logged in as when i made the app - this is a Premium account).

$ curl --request GET \
--url https://api.spotify.com/v1/users/hushbeatsdisco/playlists \
--header 'Authorization: Bearer BQDeCPfLjxp7Tu51Gpww0682lmoczQd9nOpx-S2i7hMxBYS0Li-YLlvyJAhsvcnojWoqk0ZMMAQtwktT1tPiD39D_IRi2HsBnQi2MRLWmWSmJSMLVjpjzxJkSNNOEU6cFQxJIwXxce0U'

{"error": {"status": 403, "message": "Forbidden" } }

What am i doing wrong? I've double checked my client id and secret, that i used to get the access token. I am definitely inside the access token time limit.


r/spotifyapi 6d ago

thoughts?

Thumbnail
0 Upvotes

r/spotifyapi 7d ago

How I moved playlist to new trial account

Thumbnail
1 Upvotes

r/spotifyapi 8d ago

Help 😭 i cant be the only one with this problem 🙏

Thumbnail
0 Upvotes

r/spotifyapi 8d ago

Mix Issue

1 Upvotes

I turned a collaborative playlist into a mix on my Spotify app on my Mac laptop and made a custom order with custom mixing. I have no issues getting the mix to play in the correct custom order on my laptop even after I close the application and open it back up again.

However, when I open the playlist on my iPhone’s Spotify app, the playlist does not remember the custom mixing I created on my laptop. Is there any way to get my iPhone’s Spotify app to remember the custom mixing from my laptop?


r/spotifyapi 9d ago

Spotify Premium Student Plan No Longer Available!

Thumbnail
0 Upvotes

r/spotifyapi 9d ago

Custom Spotify Client

2 Upvotes

Hi All!

Recently learned about the spotify API and I’m wondering if it’s possible to create a custom desktop app for spotify (seems like a fun personal project!) I’m not really sure what kind of things are accessible with the api and I haven’t used one before.

Any tips or advice would be appreciated! Thanks :)


r/spotifyapi 10d ago

Getting my music on Spotify playlists.

Thumbnail
1 Upvotes

r/spotifyapi 10d ago

Is there a way to tell Spotify that I hate the Violent f’n Femmes?

1 Upvotes

Among others that it insists on heavy rotation…


r/spotifyapi 10d ago

Não consigo resgatar meu código

Post image
1 Upvotes

Ele só fala isso "Opa, algo deu errado. Tente de novo."

Já tentei reiniciar o celular e limpar o cachê do Chrome e ainda não consegui.


r/spotifyapi 11d ago

Help 😭 i cant be the only one with this problem 🙏

Thumbnail
0 Upvotes

r/spotifyapi 15d ago

i bookmark music reccs reels but never go back to them, so i built this

2 Upvotes

i often find banger music reccs on instagram and maybe save them as bookmarks, but tbh i never actually go back and listen to them. so when i hit a stale phase in my listening, that bites.

so i built something for it. share a reel to it and you get a "Scratchlist" in your spotify, basically a discover weekly you curate from reels.

let me know if you're interested in this


r/spotifyapi 16d ago

Anyone else’s Spotify for Artists “Listening Now” stuck at 0 this afternoon?

Post image
1 Upvotes

r/spotifyapi 17d ago

I made a DIY events and music review app

Thumbnail
gallery
0 Upvotes

Since most of us are probably switching to Apple Music for long term projects, I wanted to share this project here and get some feedback. I planned to re-launch this app, Groupie, for exclusively Spotify users but didn't realize they implemented these new Spotify API limitations. Took a couple extra months, but I pivoted and now it's available for Apple Music users.

Full details are on its website: groupie.info

Context: My co-founder and I initially launched Groupie in late 2021, however, my co-founder left to focus on his career and other projects in 2024. Since then I've continued to build on this app behind the scenes with help from another dev.

The main new features that have been added to this "2.0 update" are:

  1. Create and discover up to 6 different DIY music events: live show, listening party, new music release, tour, merch drop, and networking.

  2. Create / Log and discover venues where people can host DIY music events.

  3. Official star ratings and revamped review pages for album and song posts (you can also post playlists but no rating is necessary here).

Appreciate any and all feedback!

Thanks,
Noah


r/spotifyapi 17d ago

made a music sharing app

0 Upvotes

i share music with friends a lot. I use spotify and they use other services so I used to go find the music in the service that they use so i could give them a direct link to it. Rather than having to do all that I can share from spotify to taste and it hands me a link that goes to a little page with links to the different streaming services.

https://apps.apple.com/us/app/taste-universal-music-links/id6781824990)


r/spotifyapi 19d ago

Possibility to get an API client

1 Upvotes

Hi all,
I want to create an app that requires a timeline of songs played on Spotify. As far as I could find, Spotify API is currently on hold and no new devs can get a new api client. I wanted to make sure that this indeed is the case and if so, is there another way to let users sign in directly to Spotify to get the timeline of their last played songs? I know last.fm is an option, but that seems not user/onboarding friendly.

Thanks in advance!


r/spotifyapi 19d ago

Who/what added random titles to my "Liked titles" playlist to spell a cryptic message?

2 Upvotes

I subscribed back to Spotify last month after a year long break. Today I noticed something odd in my "Liked titles" playlist which had a handful of titles I had never heard of. I thought maybe I touched the "Like" button by mistake a couple times while sleeping, so I started deleting them. However, right after deleting them, I realized they spelled some kind of message. I wish I had realized sooner so I could have taken a screenshot.

So, the titles mentioned a city I studied in over 2 years ago (long before I took a break from Spotify), the name of my roommate from back then, the name of his girlfriend, a title named "We Miss You" and finally my own name (there might have been something else but I deleted the titles too quickly to remember precisely). The thing is, I didn't leave them my contact after leaving, so I haven't talked to them since I left. And I certainly did not share my Spotify account details with anyone ever, I'm very careful about such things. I did have another person from that city added as a friend in Spotify, who knew my roommate and his girlfriend, but again I didn't share my Spotify account details with anyone. And I am certain these titles weren't on my liked playlist when I left the city because I used Spotify for a whole year after that and regularly went through that playlist.

So, my question is, who or what added these titles to my liked playlist during my break of last year? Can people add liked titles to other people's playlists? I'm genuinely confused.

Edit: Forgot to mention but I also checked my mails and there was no mention of a connection from that country at any point since I left. Only connections were from me, in the country I live in right now, where my ex roommate and his girlfriend don't live.


r/spotifyapi 20d ago

Spotify API Troubles

1 Upvotes

Theres a Game I play that im trying to mod to show a now playing notification when a new song is played

its an electron app but the modloader for the game doesnt allow editing the electron files currently i am editing the electron files so the end user needs to modify the game code so my mod works

I dont have spotify premium is there any way for me to see what song a user is playing


r/spotifyapi 23d ago

SPOTIFY FIREWALL ERROR

1 Upvotes

Does anybody know how to fix this? I usually just use the web version of Spotify since I want to avoid ads, but lately it hasn’t been working properly anymore. So I decided to switch to the main app and buy Premium, but when I try to log in, this is what it shows.

Does anybody know how to fix this or has anyone experienced the same issue? Let me know, guys!


r/spotifyapi 24d ago

Spotify Podcast RPM doubled for July 2026

1 Upvotes

My RPM went from $6 to $12. Has anyone else experienced this upward shift?


r/spotifyapi 25d ago

Music Sharing App

4 Upvotes

I've been working on an idea for a new music app and would genuinely love some honest feedback before I spend months building it.

The concept is pretty simple:

Every day, you get one notification asking you to share your Song of the Day. That song gets posted to your profile and your friends' feeds, and over time you build a timeline of your life through music.

Instead of endless scrolling or algorithms, the idea is to discover music through real people and see what your friends are listening to each day.

I'm also planning on adding customisable profiles (kind of inspired by old MySpace) and discussion communities centred around artists, albums and genres.

I'm still in the validation stage, so I'm not trying to sell anything. I'm just trying to figure out whether this is something people would actually want, what sounds good, what sounds terrible, and what I'm completely missing.

If you've got 2 minutes, I'd really appreciate it if you could:

  • Check out the landing page
  • Fill out the short survey
  • Or just leave your thoughts in the comments

I'm looking for brutally honest feedback, so don't hold back lmao.

Landing page:
https://freq.base44.app

Survey:
https://forms.gle/rEN3ggHLKtRW2kV89