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
{{ message }}
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.
As the title says, I'm running into the error AUTHED_API_GET_LIMIT rate limit exceeded. Please wait 12 seconds then retry your request. when querying https://api.trakt.tv/search/show (only visible from network tab at the moment since the traktflix view will simply show the misleading info Not found on Trakt). Its HTTP response is 429.
Maybe one or more of these things would be great:
I see that duplicated requests are made. So syncing many episodes of a series will lead to requesting https://api.trakt.tv/search/show?query=$name_of_the_series for every single episode. So I guess memorising / caching the response for the same name would not only help in avoiding the rate limit thing but also give a significant speed bump for series.
limiting sync speed so that it won't lead to this issue in the first place
sleep for the mentioned amount of seconds (and maybe notifying the user) if the sync ran into the rate limit with the response Please wait (/\d+/) seconds then retry your request.
PS: Thank you so much for this extension!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
As the title says, I'm running into the error
AUTHED_API_GET_LIMIT rate limit exceeded. Please wait 12 seconds then retry your request.
when queryinghttps://api.trakt.tv/search/show
(only visible from network tab at the moment since the traktflix view will simply show the misleading infoNot found on Trakt
). Its HTTP response is429
.Maybe one or more of these things would be great:
https://api.trakt.tv/search/show?query=$name_of_the_series
for every single episode. So I guess memorising / caching the response for the same name would not only help in avoiding the rate limit thing but also give a significant speed bump for series.Please wait (/\d+/) seconds then retry your request.
PS: Thank you so much for this extension!
The text was updated successfully, but these errors were encountered: