Hi @Dr. McKay!
I will reward you there for the answer. Is this way correct way of injecting proxy? https://github.com/DoctorMcKay/node-steamcommunity/issues/336
Pasting from github:
I'm using proxy with steamcommunity.
For login I use steam-session library, and for sending requests to steamcommunity i use this package (steam-community).
Is this correct way of injecting proxy? (I know i shouldn't use login from this package, that's why i use steam-session)
const community = new SteamCommunity({
request: Request.defaults({
forever: true,
proxy: 'http://my-proxy.com',
}),
});