Optional
transportOptional
localA string containing the local IP address you want to use. For example, 11.22.33.44
.
Cannot be used alongside socksProxy, httpProxy, or
agent.
Optional
socksA string containing a URI for a SOCKS proxy. For example, socks5://user:pass@1.2.3.4:1080
.
Cannot be used alongside localAddress, httpProxy, or
agent.
Optional
httpA string containing a URI for an HTTP proxy. For example, http://user:pass@1.2.3.4:80
.
Cannot be used alongside localAddress, socksProxy, or
agent.
Optional
agentAn https.Agent
instance to use for requests. If omitted, a new https.Agent
will be created internally.
Cannot be used alongside localAddress, socksProxy, or
httpProxy.
Optional
userA string containing the user-agent you want to use when communicating with Steam. Only effective when using EAuthTokenPlatformType.WebBrowser.
Optional
machineYour Steam machine ID, used for SteamClient logins. Pass a Buffer containing your well-formed machine ID, pass
true
to have steam-session internally generate a machine ID using the same formula that steam-user uses by
default, or pass false
, null
, or omit to not send a machine ID.
Optional
machineYour machine's friendly name. Only effective when using SteamClient. If omitted, a random machine name in the format DESKTOP-ABCDEFG will be generated automatically.
Generated using TypeDoc
An
ITransport
instance, if you need to specify a custom transport. If omitted, defaults to aWebSocketCMTransport
instance forSteamClient
platform types, and aWebApiTransport
instance for all other platform types. In all likelihood, you don't need to use this.If you specify a custom transport, then you are responsible for handling proxy or agent usage in your transport.