Testy Tester Posted May 28, 2022 Report Posted May 28, 2022 (edited) is it possible to send a list of items to the server and get a response with the data of all items, so as not to do it one by one? more or less like this: csgo.inspectItems( [ 'itemLink1', 'itemLink2', 'itemLinkN', ], callback ) Edited May 28, 2022 by Testy Tester Quote
Dr. McKay Posted May 29, 2022 Report Posted May 29, 2022 No, you have to do it one-by-one with around a 1-second delay between requests. If you're trying to get data for items in your inventory, there's no need to inspect them as all the data is available in the inventory array. Quote
Testy Tester Posted October 23, 2023 Author Report Posted October 23, 2023 On 5/30/2022 at 12:02 AM, Dr. McKay said: No, you have to do it one-by-one with around a 1-second delay between requests. If you're trying to get data for items in your inventory, there's no need to inspect them as all the data is available in the inventory array. no, I need to get items data from the market. I'd like to make a list of several items from the market and get information about all of them. the point is that need to bypass the limit on the number of requests. If I send one request per second, listing all the items will take too much times. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.