You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We (https://www.snoozethis.com) recently integrated with your API to allow our users to wait for new releases on e.g. GitHub.
This broke around June 22nd. Previously we POSTed {"id":"1234"} to https://release-monitoring.org/api/v2/versions/ but that started returning HTTP 400s. We switched to GETting https://release-monitoring.org/api/v2/versions/?project_id=1234 and that seems to work now.
The commit message in #1105 indicates it wasn't supposed to change.
The text was updated successfully, but these errors were encountered:
This wasn't an intended change. We just replaced the old API backend which wasn't supported anymore to new one.
One thing that came to my mind at first glance, maybe the old API backend was not that strict regarding data types. The id was defined as int and looking at our POST request your are sending string. So changing the payload to {"id":1234} should fix the issue. It would also explain HTTP 400. The GET will work as well.
Hi.
We (https://www.snoozethis.com) recently integrated with your API to allow our users to wait for new releases on e.g. GitHub.
This broke around June 22nd. Previously we POSTed
{"id":"1234"}
tohttps://release-monitoring.org/api/v2/versions/
but that started returning HTTP 400s. We switched to GETtinghttps://release-monitoring.org/api/v2/versions/?project_id=1234
and that seems to work now.The commit message in #1105 indicates it wasn't supposed to change.
The text was updated successfully, but these errors were encountered: