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
I connect a proxy to create a link between accounts, but I still catch rate limits, etc.
var config = SteamConfiguration.Create(b => b
.WithHttpClientFactory((httpMessage) =>
{
var handler = new HttpClientHandler()
{
Proxy = new WebProxy($"http://127.0.0.1:{local_port_t}"),
UseProxy = true,
UseCookies = true,
CookieContainer = new CookieContainer(),
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate
};
return new HttpClient(handler)
{
Timeout = TimeSpan.FromSeconds(30)
};
})
);
SteamClient steamClient = new SteamClient(config);
and after that I already log in using a proxy, checked the IP and it matches the proxy, but I constantly catch rate limits and often letters do not arrive about authorization and binding
This discussion was converted from issue #1554 on July 09, 2025 12:44.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I connect a proxy to create a link between accounts, but I still catch rate limits, etc.
and after that I already log in using a proxy, checked the IP and it matches the proxy, but I constantly catch rate limits and often letters do not arrive about authorization and binding
Beta Was this translation helpful? Give feedback.
All reactions