-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to get playcounts Error 502 #28
Comments
I recently have been unable to access playcounts aswell, but I am having the same issue as #11 although this has not happened before. I am assuming this might be something on Spotify's side too |
Same issue for me 😔 Seeing they have some outages on downdetector. Hopefully that’s all it is. |
I don’t see playcounts being returned even in Spotify’s own web anymore either. The counts always showed in the logs of the api call. Now they aren’t there. |
I am getting this error {"success": false, "data": "An unknown error has occurred; logged to console"} http://MYIPADDRESS:8080/albumPlayCount?albumid=XXXXXX and this error in the console 2023-06-19 21:26:33,101 INFO ApResolver:66 - Loaded aps into pool: {accesspoint=[ap-gew4.spotify.com:4070, ap-gew4.spotify.com:443, ap-gew4.spotify.com:80, ap-guc3.spotify.com:4070, ap-gue1.spotify.com:443, ap-gew1.spotify.com:80], dealer=[gew4-dealer.spotify.com:443, guc3-dealer.spotify.com:443, gue1-dealer.spotify.com:443, gew1-dealer.spotify.com:443], spclient=[gew4-spclient.spotify.com:443, guc3-spclient.spotify.com:443, gue1-spclient.spotify.com:443, gew1-spclient.spotify.com:443]} |
This is related to the country of the account. Spotify seems to have changed the accounts to the country they were created. I changed back to the country where librespot is running, but didnt fix the problem. Now, it is happening with the error I just posted above. |
This issue is also only happening for the artistInfo and albumPlayCount end points . artistInsights still works. |
I think Spotify finally killed support for this mercury endpoint.
|
I hope not 😔 - I wonder if there is another way to retrieve playcounts then. |
well you can always find the appropriate album of a track, and then fetch the album (using the graphql endpoint)
returns
|
But is there a way using graph to get the complete list of Albums and Singles for an artistID? |
@jpgrovy Yes but it's paged, which is really annoying.
|
How / where do you use this link? How does it replace the mercury call? If i simply check the link you share it tells "No token provided" |
That would be for you to figure out :) Hint: use the mercury client to get a bearer and then put it in the headers |
That won't be for me then I suppose, I always struggle to cope with clients/protocols, etc, I have no idea what your hint means tbh |
Oh I thought you were a maintainer of this project.. This project I think has the ability to fetch a good token over mercury (hm://keymaster/token/authenticated?scope...), which can then be used to authenticate properly and fetch the resource I provided. It would require quite some changes to the project, unfortunately I am not actively involved in this project so I wont do it. But the developer may of course. |
I get “RBAC: Access Denied” when trying to make the api-partner calls. Side note… anyone want to be awesome and fix the librespot playcount code? 🙏🙏🙏 |
Yep, they most likely killed the endpoint: librespot-org#678 Since it seems like Spotify doesn't use Hermes in their clients anymore, I think the only way forward with this project is to use Spotify's private API, so this repo may be archived once I figure things out. |
Well... hermes is just their internal router. As I mentioned earlier, all hermes endpoints can be translated to their HTTPs counterpart by just replacing hm:// with the spclient url. I think hermes will still be supported, since a lot of their internal services may still use them. |
To re-do this repo maybe the easiest is to restart from the last version of librespot-java and import the few playcount / artist info handlers into it as the former now manages the Web API, has a token provider with the keymaster and all. In a first step it wouldn't be needed to stripe the unneeded content or anything. |
Ah, I haven't worked on this project in a while and forgot the terminology. I meant to say that their clients switched to using the GraphQL API for retrieving stuff like track play counts in an album. Since it seems that all endpoints that this project uses have become useless ( ...which at that point I'd essentially be making a CORS proxy for the GraphQL API. Seems like a cheap solution, though the main issue is that the GraphQL API is quite terrible to work with, so I'd have to look into that further :p |
Yes the graphql api is terrible to work with, and I do not understand why Spotify did not just build on the web-api, which has a good schema. Anyways, I was also able to implement the oauth protocol using PKCE, and reverse engineer their persistent login mechanism. Mainly, after the oauth callback, you get an access token, which you can then use to authenticate using the old method (over TCP). In pseudo code this will look like
Next in another login session: message LoginRequest {
.spotify.login5.v3.ClientInfo client_info = 1;
.spotify.login5.v3.credentials.StoredCredential stored_credential = 100;
}
|
You guys are too smart for me 😉 … does this mean it’s fixable to get working again? |
Hey @christosk92 , Do you know a replacement of artistInsights with their graphql API especially for top 50 cities ? I don't find one. |
I'm currently testing sp-playcount on api.t4ils.dev: |
@entriphy : yes it seems old top 50 is no longer available via graphq :/ |
@louison You can find those when looking in the source code of the webplayer. Those queries are then hashed to decrease request size..
Which if you put a breakpoint there, you can expect the body |
Artist Insights is showing Top 50 cities and still works |
Yes I know, but I anticipate |
Is anyone working on an update / fix ? |
Hi Entriphy, I'm not a programmer, so excuse my basic questions, and any misconceptions I have about how to implement a possible solution.. Your program is brilliant, btw. I see that the endpoints you're testing @ api.t4ils.dev return the raw .json data I need, (the track playcounts). With complete reliance on GPT-4, and a little help from a programmer-friend, I managed to create a search engine for personal/testing use which coordinates .js code of my own, (my .js/html is named "ISE_Updated" here: https://github.com/Temoigneur/Integrated_Search_Engine/tree/main) with your java program to retrieve individual track playcounts associated with a list of search results returned by the web-api, upon executing a search for musical content, (which incidentally runs four separate search engines simultaneously, via one central search bar). I recently updated the search function /w the /artistInsights endpt, to display a box beside the top three search results corresponding to 3 unique artists, that when clicked, showed the artist's monthly plays in the top five cities globally, as well as those of three Canadian cities that the artist was most popular in, (I'm in Canada). Although I managed to update the CORS handling in your java program to resolve issues with my localhost/ chrome configuration, and managed to update the version number when Spotify recently changed that, (https://github.com/Temoigneur/sp-playcount-librespot), I can see that attempting to reconfigure your entire program with next to zero understanding of what I'm doing, for Graphql, or to possibly retrieve what I need from new endpoints via api.t4ils.dev, would be a daunting task, and possibly an exercise in futility, (if that could even work at all). Is there any relatively straightforward way your program could be modified to use an alternate endpoint/method to obtain the play counts for individual tracks, that would work relatively seamlessly with my .js/html code via a fetch request to the updated java program/server, as before? Thank you!! |
I’m also anxiously waiting and hopeful of an update 🙏 |
Does anyone have the JSON schema for all the old endpoints (the ones that this project uses) by any chance? I'm trying to make sp-playcount as backwards-compatible with this project's endpoints as possible, though since the old endpoints no longer work, I cannot do that unless someone has the JSON schema (or at the very least a sample response from each of the endpoints). |
Here's the /playCount endpt object data (partially expanded) as it appears
in the chrome browser, unfortunately I didn't save any of the JSON data for
the endpoints..
▼{success: true, data: {uri: "spotify:album:1ynyQdPQiXdYJNQEDL1S3d", name:
"My Turn",…}}
▼data: {uri: "spotify:album:1ynyQdPQiXdYJNQEDL1S3d", name: "My Turn",…}
►additional: {releases: [{uri: "spotify:album:5UWwSyg5f75ZY87bUje6RA",
name: "My Turn",…}]}
►artists: [{name: "Lil Baby", uri: "spotify:artist:5f7VJjfbwm532GiveGC0ZK"}]
►copyrights: ["© ℗ 2020 Quality Control Music, LLC, under exclusive license
to UMG Recordings, Inc."]
►cover: {uri: "
https://i.scdn.co/image/ab67616d00001e02f46a9ad551acbdab8f72fd89"}
day: 28
▼discs: [{number: 1, name: "", tracks: [,…]}]
▼ 0: {number: 1, name: "", tracks: [,-.]}
name: ""
number: 1
▼ tracks: [,...]
▼1: {uri: "spotify:track:20Yz5dzjdTCVjXte9KrJbi", playcount: 37836909,
name: "Get Ugly", popularity: 53,…}
►artists: [{name: "Lil Baby”, uri:
"spotify:artist:5f7Vljfbwm532GiveGC0ZK",..}]
duration: 155832
explicit: true
name: "Get Ugly"
number: 1
playable: true
playcount: 37836909
popularity: 53
uri: "spotify:track:20Yz5dzjdTCVjXte9Krlbi"
►2:{uri: "spotify:track:7KSSdFCBHCfq4KPzz78ghk", playcount: 165765514,
name: "Heatin Up (feat. Gunna)",…}
►3:{uri: "spotify:track:01JMnRUs2YOK6DDpdQASGY", playcount: 135812509,
name: "Grace (feat. 42 Dugg)",…}
artists
:
[{name: "Lil Baby", uri: "spotify:artist:5f7VJjfbwm532GiveGC0ZK",…},…]
duration
:
177314
explicit
:
true
name
:
"Heatin Up (feat. Gunna)"
number
:
2
playable
:
true
playcount
:
165765514
popularity
:
70
uri
:
"spotify:track:7KSSdFCBHCfq4KPzz78ghk"
►1: {uri: "spotify:track:7KSSdFCBHCfq4KPzz78ghk",
►3: {uri: "spotify:track:2b7rt5gCEy2p2zTp656s4U",
label: "Quality
month: 2
name: "My Turn"
►related: {releases: [{uri: "spotify:album:0FYvMdfTfYJxnJnKs1wDb0", name:
"It's Only Me",…},…]}
track_count: 20
type: "album"
uri: "spotify:album:lynyQdPQiXdYJNQEDLlS3d"
year: 2020
success: true
…On Sun, Jun 25, 2023 at 8:25 PM triph ***@***.***> wrote:
Does anyone have the JSON schema for all the old endpoints (the ones that
this project uses) by any chance? I'm trying to make sp-playcount as
backwards-compatible with this project's endpoints as possible, though
since the old endpoints no longer work, I cannot do that unless someone has
the JSON schema (or at the very least a sample response from each of the
endpoints).
—
Reply to this email directly, view it on GitHub
<#28 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE4Y5PHAHQ5JAIMHNVRJOC3XNDJH5ANCNFSM6AAAAAAZMFYZZE>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Here's the /artistInsights endpt json, (which you probably already have:)
{"success": true, "data":
{"artistGid":"ac4d229eb1194eac83fc53e94cb24164","name":"Lil
Baby","mainImageUrl":"https://i.scdn.co/image/ab676161000051746cad3eff5adc29e20f189a6c","headerImage":{"id":"ab6761863e04a7eabaeb3b509e2181b5","uri":"https://i.scdn.co/image/ab67618600001016c1fb58154514c4af61de7e4a","width":2660,"height":1140},"autobiography":{"body":"Some
artists define a genre, but Lil Baby defines a generation. The GRAMMY
Award-winning rapper has smashed records, made history, and impacted
the course of modern hip-hop with his instantly identifiable and
inimitable style. He has garnered dozens of multi platinum
certifications and tens of billions of streams as arguably the biggest
new rapper to emerge this decade. Following the success of his
platinum full-length debut Harder Than Ever in 2018, he seized #1 on
the Billboard Top 200 with 2020’s My Turn, becoming “the year’s #1
selling and #1 streaming album in the US.” At first, it cemented him
as “2020’s first and only artist to go double-platinum,” but it has
since gone quadruple-platinum and has logged 85 weeks in the top 10 of
the Top R&B/Hip-Hop Albums chart – marking the longest top-tier
run in the chart’s history. \n \nHe notably tied Prince and Paul
McCartney for Billboard Hot 100 hits and Taylor Swift for “most weeks
atop the Billboard Top 200 in 2020” with a total of 6. Out of eight
nominations, he scored his first GRAMMY® Award in 2022. He teamed up
with Lil Durk for The Voice of the Heroes, marking his second #1 debut
on the Billboard Top 200. It’s just the beginning though. Most
recently, he released “Right On” and “In A Minute” which both songs
debuted on Billboard’s Hot 100 chart. This feat puts Lil Baby in rare
territory, making him the youngest of only 12 artists to have ever
landed 100 or more songs on the Hot 100.
\n","links":{"twitter":"https://twitter.com/lilbaby4pf","instagram":"https://instagram.com/lilbaby/"}},"biography":"Atlanta-bred
rapper Lil Baby is charismatic, confident, and overwhelmingly popular
on a worldwide level, consistently topping the charts with his
rough-yet-accessible commercially geared sound. Following a series of
mixtapes, his popularity exploded in 2018, the year he released his
first proper album, Harder Than Ever (which included the <a
href=\"spotify:artist:3TVXtAsR1Inumwj472S9r4\">Drake</a>-featuring hit
\"Yes Indeed\"), and Drip Harder (a collaborative mixtape with <a
href=\"spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ\">Gunna</a>), both of
which entered the Top Ten of the Billboard 200. He hit number one in
2020 with his second studio album, My Turn, and again the next year
with The Voice of the Heroes, a collaborative studio effort with <a
href=\"spotify:artist:3hcs9uc56yIGFCSy9leWe7\">Lil Durk</a>. Lil Baby
made a habit of dominating the charts, debuting in the top spot once
more in 2022 with his third studio album, It's Only Me.\r\n\nLil Baby
was born Dominique Jones in Atlanta in 1994. He grew up hanging with
friends like <a href=\"spotify:artist:50co4Is1HCEo8bhOyUWKpn\">Young
Thug</a>, Coach K, and Pee, leaning more toward a life of petty crime
and street hustling while his friends went on to thrive in the music
industry. In 2015, at age 19, Lil Baby went to prison for two years
for a probation violation. Upon his release in 2017, he jump-started
his rap career with a mixtape called Perfect Timing, released in April
of that year. The mixtape featured cameos from friends like <a
href=\"spotify:artist:6icQOAFXDZKsumw3YXyusw\">Lil Yachty</a>, <a
href=\"spotify:artist:50co4Is1HCEo8bhOyUWKpn\">Young Thug</a>, and <a
href=\"spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ\">Gunna</a>, and strong
production from <a href=\"spotify:artist:0jsba402qO37r9tiffkkUZ\">808
Mafia</a>, <a href=\"spotify:artist:6IpnhdUI0JNSmk1w5hcBwq\">Brickz</a>,
and many others, highlighted by Lil Baby's woozy flows. The mixtape
immediately brought the young rapper fame, in part due to his
affiliations with friends in the <a
href=\"spotify:search:label%3A%22Quality+Control%22\">Quality
Control</a> family of artists as well as the 4 Pockets Full clique.
\r\n\nAs his mixtape attracted more listeners, Lil Baby worked
constantly on new music, releasing singles like \"My Dawg\" and the <a
href=\"spotify:artist:50co4Is1HCEo8bhOyUWKpn\">Young Thug</a>
collaboration \"Pink Slip\" in the summer of 2017. Other releases that
year included Harder Than Hard, 2 the Hard Way (with <a
href=\"spotify:artist:2qFmZcrhfzbppEdD6wibAy\">Marlo</a>), and Too
Hard. Lil Baby's debut studio album, Harder Than Ever, appeared in May
2018. Featuring guest appearances from <a
href=\"spotify:artist:3TVXtAsR1Inumwj472S9r4\">Drake</a>, <a
href=\"spotify:artist:4DdkRBBYG6Yk9Ka8tdJ9BW\">Offset</a>, <a
href=\"spotify:artist:4O15NlyKLIASxsJ0PrXPfz\">Lil Uzi Vert</a>, and
others, the release entered the Billboard 200 album chart at number
three. The rapper's success continued with Drip Harder, a
collaborative mixtape with <a
href=\"spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ\">Gunna</a> that was
released that October and reached number four on the Billboard 200.
Yet another mixtape, Street Gossip, appeared in November 2018. 2019
saw Lil Baby starring in the film How High 2 and releasing a handful
of singles including the <a
href=\"spotify:artist:1RyvyyTE3xzB2ZywiAwp0i\">Future</a>
collaboration \"Out the Mud.\" \r\n\nPreceded by \"Woah\" and \"Sum 2
Prove,\" his second studio album, My Turn, arrived in February 2020
and went straight to number one. Later that year, Lil Baby issued a
pair of singles, \"On Me\" and \"Errbody.\" That June, he released
\"The Bigger Picture,\" a protest song responding to police violence
and systemic racism. The track entered the Billboard singles chart at
number three and was nominated for two Grammys: Best Rap Song and Best
Rap Performance. Lil Baby also performed the song live at the Grammy
ceremonies that year. In March 2021, Lil Baby appeared as a featured
artist on <a href=\"spotify:artist:3TVXtAsR1Inumwj472S9r4\">Drake</a>'s
single \"Wants and Needs.\" The song debuted in the number two
position on the Hot 100, making it Lil Baby's highest-charting track
up to that point. In June of that year, Lil Baby teamed up with <a
href=\"spotify:artist:3hcs9uc56yIGFCSy9leWe7\">Lil Durk</a> for
collaborative album The Voice of the Heroes. The project featured
guest appearances from <a
href=\"spotify:artist:45TgXXqMDdF8BkjA83OM7z\">Rod Wave</a>, <a
href=\"spotify:artist:20sxb77xiYeusSH8cVdatc\">Meek Mill</a>, <a
href=\"spotify:artist:50co4Is1HCEo8bhOyUWKpn\">Young Thug</a>, and <a
href=\"spotify:artist:0Y5tJX1MQlPlqiwlOH1tJY\">Travis Scott</a> and
debuted at number one. In early 2022, he paired with <a
href=\"spotify:artist:0hCNtLu0JehylgoiP8L4Gh\">Nicki Minaj</a> for the
singles \"Do We Have a Problem?\" and \"Bussin.\" Lil Baby returned
with new material of his own in October of 2022 with his third effort
It's Only Me, which included appearances from <a
href=\"spotify:artist:0Njy6yR9LykNKYg9yE23QN\">Nardo Wick</a>, <a
href=\"spotify:artist:50co4Is1HCEo8bhOyUWKpn\">Young Thug</a>, <a
href=\"spotify:artist:4FlG0V0jhLO4qGpayFOphj\">EST Gee</a>, and
several others, and debuted at number one on the Billboard charts. Lil
Baby kicked off 2023 with the booming standalone cut \"Go Hard.\" ~
Fred Thomas","images":[{"id":"ab6772690000c46c8d138294c7bf364566df73b5","uri":"https://i.scdn.co/image/ab6772690000c46c8d138294c7bf364566df73b5","width":1000,"height":1000},{"id":"ab6772690000c46c851e636b224543fe715fa5d6","uri":"https://i.scdn.co/image/ab6772690000c46c851e636b224543fe715fa5d6","width":1000,"height":1000},{"id":"a4841becd710918d16d865ef491c5a8c744909e1","uri":"https://i.scdn.co/image/a4841becd710918d16d865ef491c5a8c744909e1","width":1000,"height":1000},{"id":"ca461d06c1cc5990cfcd38cfbe0b8ee0a6c129f9","uri":"https://i.scdn.co/image/ca461d06c1cc5990cfcd38cfbe0b8ee0a6c129f9","width":1000,"height":1000}],"imagesCount":4,"globalChartPosition":124,"monthlyListeners":31054795,"monthlyListenersDelta":-617970,"followerCount":14472610,"followingCount":0,"playlists":{"entries":[{"uri":"spotify:user:spotify:playlist:37i9dQZF1DX0XUsuxWHRQd","name":"RapCaviar","imageUrl":"https://i.scdn.co/image/ab67706f00000002bb14ca55249220436a5eff27","owner":{"name":"Spotify","uri":"spotify:user:spotify"},"listeners":0},{"uri":"spotify:user:spotify:playlist:37i9dQZF1DWTl4y3vgJOXW","name":"Locked
In","imageUrl":"https://i.scdn.co/image/ab67706f00000002a6329f8bb3d28d5fba3c1ba3","owner":{"name":"Spotify","uri":"spotify:user:spotify"},"listeners":0},{"uri":"spotify:user:spotify:playlist:37i9dQZF1DWY4xHQp97fN6","name":"Get
Turnt","imageUrl":"https://i.scdn.co/image/ab67706f00000002cf3547d303cd78dffb7e33a7","owner":{"name":"Spotify","uri":"spotify:user:spotify"},"listeners":0},{"uri":"spotify:user:spotify:playlist:37i9dQZF1DX7QOv5kjbU68","name":"This
Is Drake","imageUrl":"https://i.scdn.co/image/ab67706f0000000287bff188c40608c48b82068f","owner":{"name":"Spotify","uri":"spotify:user:spotify"},"listeners":0},{"uri":"spotify:user:spotify:playlist:37i9dQZF1DX9oh43oAzkyx","name":"Beast
Mode Hip-Hop","imageUrl":"https://i.scdn.co/image/ab67706f00000002d2d1cbd94520146a3fecc8fd","owner":{"name":"Spotify","uri":"spotify:user:spotify"},"listeners":0},{"uri":"spotify:user:spotify:playlist:37i9dQZF1DX76Wlfdnj7AP","name":"Beast
Mode","imageUrl":"https://i.scdn.co/image/ab67706f00000002c771198277ecd33007dd2de4","owner":{"name":"Spotify","uri":"spotify:user:spotify"},"listeners":0},{"uri":"spotify:user:spotify:playlist:37i9dQZF1DWTyiBJ6yEqeu","name":"Top
Gaming Tracks","imageUrl":"https://i.scdn.co/image/ab67706f00000002f8b3113ff97bf94e7c8f6354","owner":{"name":"Spotify","uri":"spotify:user:spotify"},"listeners":0},{"uri":"spotify:user:spotify:playlist:37i9dQZF1DWZixSclZdoFE","name":"Energy
Booster: Hip-Hop","imageUrl":"https://i.scdn.co/image/ab67706f00000002632d90188a6aa3f43fbbbb91","owner":{"name":"Spotify","uri":"spotify:user:spotify"},"listeners":0},{"uri":"spotify:user:spotify:playlist:37i9dQZF1DWWxPM4nWdhyI","name":"This
Is Ed Sheeran","imageUrl":"https://i.scdn.co/image/ab67706f00000002d7c989820a3155855cc6da87","owner":{"name":"Spotify","uri":"spotify:user:spotify"},"listeners":0},{"uri":"spotify:user:playstation_music:playlist:4R7c9JN6J3jEaqw2sKiAZQ","name":"Street
Fighter 6","imageUrl":"https://i.scdn.co/image/ab67706c0000da84c3cbc4ae0626ccfe912bb663","owner":{"name":"PlayStation®️","uri":"spotify:user:playstation_music"},"listeners":0}]},"cities":[{"country":"US","region":"CA","city":"Los
Angeles","listeners":754834},{"country":"GB","region":"ENG","city":"London","listeners":681729},{"country":"US","region":"IL","city":"Chicago","listeners":649257},{"country":"US","region":"NY","city":"New
York City","listeners":627575},{"country":"US","region":"TX","city":"Dallas","listeners":567428},{"country":"US","region":"GA","city":"Atlanta","listeners":553842},{"country":"CA","region":"ON","city":"Toronto","listeners":506912},{"country":"US","region":"TX","city":"Houston","listeners":468121},{"country":"US","region":"NC","city":"Charlotte","listeners":456881},{"country":"US","region":"MN","city":"Minneapolis","listeners":432101},{"country":"AU","region":"NSW","city":"Sydney","listeners":385972},{"country":"US","region":"OH","city":"Columbus","listeners":339162},{"country":"US","region":"WA","city":"Seattle","listeners":336622},{"country":"US","region":"NY","city":"Brooklyn","listeners":331066},{"country":"US","region":"CO","city":"Denver","listeners":311139},{"country":"AU","region":"VIC","city":"Melbourne","listeners":307266},{"country":"US","region":"FL","city":"Miami","listeners":292885},{"country":"US","region":"AZ","city":"Phoenix","listeners":289898},{"country":"US","region":"PA","city":"Philadelphia","listeners":283972},{"country":"CA","region":"QC","city":"Montreal","listeners":281282},{"country":"US","region":"DC","city":"Washington","listeners":263805},{"country":"US","region":"CA","city":"San
Francisco","listeners":254741},{"country":"NL","region":"NH","city":"Amsterdam","listeners":243402},{"country":"US","region":"TX","city":"San
Antonio","listeners":230723},{"country":"US","region":"IN","city":"Indianapolis","listeners":230280},{"country":"US","region":"CA","city":"Sacramento","listeners":227795},{"country":"US","region":"FL","city":"Orlando","listeners":224264},{"country":"AU","region":"QLD","city":"Brisbane","listeners":214243},{"country":"CA","region":"BC","city":"Vancouver","listeners":210404},{"country":"US","region":"MA","city":"Boston","listeners":208272},{"country":"US","region":"TN","city":"Nashville","listeners":208136},{"country":"US","region":"TX","city":"Austin","listeners":205429},{"country":"US","region":"MI","city":"Detroit","listeners":202675},{"country":"DE","region":"BE","city":"Berlin","listeners":199331},{"country":"US","region":"MD","city":"Baltimore","listeners":195206},{"country":"FR","region":"75","city":"Paris","listeners":191162},{"country":"NL","region":"ZH","city":"Rotterdam","listeners":186859},{"country":"US","region":"FL","city":"Tampa","listeners":183903},{"country":"GB","region":"BIR","city":"Birmingham","listeners":180973},{"country":"CA","region":"AB","city":"Calgary","listeners":180807},{"country":"DE","region":"HH","city":"Hamburg","listeners":172981},{"country":"BR","region":"SP","city":"São
Paulo","listeners":172897},{"country":"GB","region":"WSM","city":"City
of Westminster","listeners":171718},{"country":"US","region":"MO","city":"Kansas
City","listeners":171160},{"country":"US","region":"CA","city":"San
Diego","listeners":169905},{"country":"US","region":"NV","city":"Las
Vegas","listeners":169444},{"country":"DE","region":"HE","city":"Frankfurt
am Main","listeners":159124},{"country":"US","region":"MO","city":"St
Louis","listeners":156548},{"country":"NG","region":"LA","city":"Lagos","listeners":154095},{"country":"CA","region":"ON","city":"Brampton","listeners":153478}]}}
On Sun, Jun 25, 2023 at 8:38 PM Bentley Humphries <
***@***.***> wrote:
… Here's the /playCount endpt object data (partially expanded) as it appears
in the chrome browser, unfortunately I didn't save any of the JSON data for
the endpoints..
▼{success: true, data: {uri: "spotify:album:1ynyQdPQiXdYJNQEDL1S3d", name:
"My Turn",…}}
▼data: {uri: "spotify:album:1ynyQdPQiXdYJNQEDL1S3d", name: "My Turn",…}
►additional: {releases: [{uri: "spotify:album:5UWwSyg5f75ZY87bUje6RA",
name: "My Turn",…}]}
►artists: [{name: "Lil Baby", uri:
"spotify:artist:5f7VJjfbwm532GiveGC0ZK"}]
►copyrights: ["© ℗ 2020 Quality Control Music, LLC, under exclusive
license to UMG Recordings, Inc."]
►cover: {uri: "
https://i.scdn.co/image/ab67616d00001e02f46a9ad551acbdab8f72fd89"}
day: 28
▼discs: [{number: 1, name: "", tracks: [,…]}]
▼ 0: {number: 1, name: "", tracks: [,-.]}
name: ""
number: 1
▼ tracks: [,...]
▼1: {uri: "spotify:track:20Yz5dzjdTCVjXte9KrJbi", playcount: 37836909,
name: "Get Ugly", popularity: 53,…}
►artists: [{name: "Lil Baby”, uri:
"spotify:artist:5f7Vljfbwm532GiveGC0ZK",..}]
duration: 155832
explicit: true
name: "Get Ugly"
number: 1
playable: true
playcount: 37836909
popularity: 53
uri: "spotify:track:20Yz5dzjdTCVjXte9Krlbi"
►2:{uri: "spotify:track:7KSSdFCBHCfq4KPzz78ghk", playcount: 165765514,
name: "Heatin Up (feat. Gunna)",…}
►3:{uri: "spotify:track:01JMnRUs2YOK6DDpdQASGY", playcount: 135812509,
name: "Grace (feat. 42 Dugg)",…}
artists
:
[{name: "Lil Baby", uri: "spotify:artist:5f7VJjfbwm532GiveGC0ZK",…},…]
duration
:
177314
explicit
:
true
name
:
"Heatin Up (feat. Gunna)"
number
:
2
playable
:
true
playcount
:
165765514
popularity
:
70
uri
:
"spotify:track:7KSSdFCBHCfq4KPzz78ghk"
►1: {uri: "spotify:track:7KSSdFCBHCfq4KPzz78ghk",
►3: {uri: "spotify:track:2b7rt5gCEy2p2zTp656s4U",
label: "Quality
month: 2
name: "My Turn"
►related: {releases: [{uri: "spotify:album:0FYvMdfTfYJxnJnKs1wDb0", name:
"It's Only Me",…},…]}
track_count: 20
type: "album"
uri: "spotify:album:lynyQdPQiXdYJNQEDLlS3d"
year: 2020
success: true
On Sun, Jun 25, 2023 at 8:25 PM triph ***@***.***> wrote:
> Does anyone have the JSON schema for all the old endpoints (the ones that
> this project uses) by any chance? I'm trying to make sp-playcount as
> backwards-compatible with this project's endpoints as possible, though
> since the old endpoints no longer work, I cannot do that unless someone has
> the JSON schema (or at the very least a sample response from each of the
> endpoints).
>
> —
> Reply to this email directly, view it on GitHub
> <#28 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AE4Y5PHAHQ5JAIMHNVRJOC3XNDJH5ANCNFSM6AAAAAAZMFYZZE>
> .
> You are receiving this because you commented.Message ID:
> ***@***.***>
>
|
I have the entire schema of all the old endpoints. Do you have an email I can send to. The version I have is quite a large response. |
Is there are description / sample available for this endpoint? |
A GitHub Gist or Pastebin/Hastebin snippet should be fine :) |
How can we install this version on our own heroku, etc ? Is there any way you can add the playcounts to the entire discography inside the getArtist call? |
Your links don’t work. How can we install this ourselves ? |
@entriphy What does it mean when is fails and says session is closed? |
Ahhhh.. your /getalbum endpt @ https://api.t4ils.dev/getAlbum?id= was working for weeks, now it's giving: {"success": false, "data": "Error while querying: Session is closed"} - will it be back up again? |
also having this issue! it works some days and others it gives me this error code. Would love a fix :) |
The endpoint were working fine yesterday but today I'm also having this same issue :( |
Was working for me fine perfectly this week, just ran into this issue this morning also |
Did they just cut off the top 50 cities now for the insights endpoint? The https://api.t4ils.dev test endpoint here is connecting but only top 5 cities is showing. I had my own hosted version of this script and as of today it's giving "Bad Credentials" errors Any one else have any experiences to report as of today ? |
@entriphy Here are a sample of the results of all endpoints (they're about 3 years old): https://gist.github.com/vitorbaptista/577934720a554dd271ce5e2a92948174 Do you think it will be possible to update this project, or has Spotify effectively killed it? |
Yes. I am really interested to know if this will be updated. Thanks.
…On Fri, Oct 20, 2023, 16:45 Vitor Baptista ***@***.***> wrote:
@entriphy <https://github.com/entriphy> Here are a sample of the results
of all endpoints:
https://gist.github.com/vitorbaptista/577934720a554dd271ce5e2a92948174
Do you think it will be possible to update this project, or has Spotify
effectively killed it?
—
Reply to this email directly, view it on GitHub
<#28 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AB5QR6TN5JVUDYJO5WUJ7STYALIG3AVCNFSM6AAAAAAZMFYZZGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONZTGMYDQMZTGE>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
I didn't find anything like I needed, so I made a prototype to get this information, if it's useful to anyone: https://github.com/caiocinel/SpotifyPrivateAPI |
@entriphy Sorry for the interruption, but I'm trying to understand how your hosted page still has access to the playcount API, like https://api.t4ils.dev/albumPlayCount?albumid=32tRzmHVO5OxNv7IK36x24. If I run this locally, I get the error 502. I tried creating a new Spotify account, in case it was because my account wasn't created in my country, but am still having the same error. Are you running the same code from this repository? |
It works because the album endpoint still works. Works for me too. It's only the artist endpoint that is broken. |
Since today I am unable to get the playcounts for any track. Only getting the folling error:
xyz.gianlu.librespot.mercury.MercuryClient$MercuryException: status: 502
at xyz.gianlu.librespot.mercury.MercuryClient.sendSync(MercuryClient.java:83)
at xyz.gianlu.librespot.handler.PlayCountHandler.handle(PlayCountHandler.java:57)
at jdk.httpserver/com.sun.net.httpserver.Filter$Chain.doFilter(Filter.java:77)
at jdk.httpserver/sun.net.httpserver.AuthFilter.doFilter(AuthFilter.java:82)
at jdk.httpserver/com.sun.net.httpserver.Filter$Chain.doFilter(Filter.java:80)
at jdk.httpserver/sun.net.httpserver.ServerImpl$Exchange$LinkHandler.handle(ServerImpl.java:848)
at jdk.httpserver/com.sun.net.httpserver.Filter$Chain.doFilter(Filter.java:77)
at jdk.httpserver/sun.net.httpserver.ServerImpl$Exchange.run(ServerImpl.java:817)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:829)
Did something change on Spotify's side?
The text was updated successfully, but these errors were encountered: