From 48d63857e26275ca41598b631796fab7630e5ba1 Mon Sep 17 00:00:00 2001 From: Eduardo Date: Fri, 28 Oct 2022 04:34:16 -0300 Subject: [PATCH] Fix: New rate limit rule from steam Steam added a new rule for inventories. Requesting with a "count" higher than 2000 will ban the proxy after four requests. All requests made with less than 2001 will have a rate limit of around 60/min per proxy. --- components/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/users.js b/components/users.js index f598a2a..468853a 100644 --- a/components/users.js +++ b/components/users.js @@ -526,7 +526,7 @@ SteamCommunity.prototype.getUserInventoryContents = function(userID, appID, cont }, "qs": { "l": language, // Default language - "count": 5000, // Max items per 'page' + "count": 2000, // Max items per 'page' "start_assetid": start }, "json": true