(edited by Dagins.5163)
how to query all ids at once?
Signed, level 1 alt
I’m using PHP in my implementation, but the logic behind my answer is about the same. Simply use /v2/items?page=0&page_size=200 to fetch 200 items at once. You can read the X-Page-Total HTTP header to know how many other pages there are. Then you can fetch all 206 (currently) pages of items with threads and do what you need with them there. /v2/items?page=1&page_size=200 and so on.
Blackgate
Harbinger Tryssa – Revenant
Harbinger Tryssa – Revenant
See this thread: https://forum-en.gw2archive.eu/forum/community/api/PHP-SQL-script-takes-9hrs-to-complete-db/4472325
I think there was also a Python implementation around, but i can’t find it anymore.
€:
There it is: https://forum-en.gw2archive.eu/forum/community/api/v2-item-details-and-recipe-details/4436181
(edited by smiley.1438)