Skip to content
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

500 server error gdy export ponad 10'000 filmów #11

Open
JSerwatka opened this issue Jan 21, 2024 · 1 comment
Open

500 server error gdy export ponad 10'000 filmów #11

JSerwatka opened this issue Jan 21, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@JSerwatka
Copy link
Owner

Filmweb nie radzi sobie z zapytaniami powyżej 100 strony (>10'000).
Dla takich przypadków rozwiązaniem będzie zapytanie o pierwsze 10'000 tak jak teraz, a o następne trzeba zapytać, sortując po najstarszych:
logged/vote/title/film?sort=timestamp&dir=ASC&page=2.
Liczba stron do ściągnięcia będzie równa: Math.ceil((<całkowita_liczba_ocen> - 10000) / 100)

Uwaga!

Może dojść do duplikatów, więc przed rozpoczęciem ściągania, trzeba będzie je usunąć.

@JSerwatka JSerwatka added the bug Something isn't working label Jan 21, 2024
@JSerwatka
Copy link
Owner Author

Zapytania o "count" w zależności od kategorii:

  • filmy obejrzane: https://www.filmweb.pl/api/v1/user/<user>/votes/film/count
  • seriale obejrzane: https://www.filmweb.pl/api/v1/user/<user>/votes/serial/count i https://www.filmweb.pl/api/v1/user/<user>/votes/tvshow/count
  • filmy "chcę zobaczyć": https://www.filmweb.pl/api/v1/user/<user>/want2see/film/count
  • seriale "chcę zobaczyć": https://www.filmweb.pl/api/v1/user/<user>/want2see/serial/count

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant