We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Brief description
First doesn't work and probably should? If it shouldn't it throws an error if you out of bounds a value
out of bounds
How to reproduce
A call to https://api.twitch.tv/helix/eventsub/subscriptions?first=1
https://api.twitch.tv/helix/eventsub/subscriptions?first=1
results in
{ "error": "Bad Request", "status": 400, "message": "The parameter \"first\" was malformed: the value must be greater than or equal to 10" }
And https://api.twitch.tv/helix/eventsub/subscriptions?first=101
https://api.twitch.tv/helix/eventsub/subscriptions?first=101
{ "error": "Bad Request", "status": 400, "message": "The parameter \"first\" was malformed: the value must be less than or equal to 100" }
But https://api.twitch.tv/helix/eventsub/subscriptions?first=50 (or any other "valid" first value)
https://api.twitch.tv/helix/eventsub/subscriptions?first=50
first
Results in 100 records always
Expected behavior
First to work and be added to the documentation in line with other helix endpoints
Additional Context
Documentation would need to be updated to say first is supported
https://dev.twitch.tv/docs/eventsub/helix-endpoints#get-eventsub-subscriptions
The text was updated successfully, but these errors were encountered:
Ticketed internally as ASYNC-1570.
Sorry, something went wrong.
after
Closing as first is no longer supported by the List EventSub Subscriptions endpoint.
No branches or pull requests
Brief description
First doesn't work and probably should?
If it shouldn't it throws an error if you
out of boundsa valueHow to reproduce
A call to
https://api.twitch.tv/helix/eventsub/subscriptions?first=1results in
{ "error": "Bad Request", "status": 400, "message": "The parameter \"first\" was malformed: the value must be greater than or equal to 10" }And
https://api.twitch.tv/helix/eventsub/subscriptions?first=101{ "error": "Bad Request", "status": 400, "message": "The parameter \"first\" was malformed: the value must be less than or equal to 100" }But
https://api.twitch.tv/helix/eventsub/subscriptions?first=50(or any other "valid"firstvalue)Results in 100 records always
Expected behavior
First to work and be added to the documentation in line with other helix endpoints
Additional Context
Documentation would need to be updated to say first is supported
https://dev.twitch.tv/docs/eventsub/helix-endpoints#get-eventsub-subscriptions
The text was updated successfully, but these errors were encountered: