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

I think there is a bug in the search api

I think there is a bug in the search api

I'm doing the following GET request and getting a 500 error:

 

 

GET https://api.spotify.com/v1/shows/6C4MdNWQSPhmzBlIVau30e/episodes?limit=50&offset=300

 

 

Response:

 

 

{
    "error": {
        "status": 500,
        "message": "Server error."
    }
}

 

 

If I modify the offset parameter I get an OK response:

 

 

GET https://api.spotify.com/v1/shows/6C4MdNWQSPhmzBlIVau30e/episodes?limit=50&offset=250

 

 


Response:

 

 

{
  "href" : "https://api.spotify.com/v1/shows/6C4MdNWQSPhmzBlIVau30e/episodes?offset=250&limit=50",
  "items" : [ ... ],
  "limit" : 50,
  "next" : "https://api.spotify.com/v1/shows/6C4MdNWQSPhmzBlIVau30e/episodes?offset=300&limit=50",
  "offset" : 250,
  "previous" : "https://api.spotify.com/v1/shows/6C4MdNWQSPhmzBlIVau30e/episodes?offset=200&limit=50",
  "total" : 319
}

 

 

Apparently it's breaking when it cant reach the limit parameter amount of items to return?

This was working for me the last time I tried it (at the most a few weeks ago)

Reply
0 Replies

Suggested posts