We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When specifying a proxy parameter of the form http://ip:port the request does not reach the proxy server and is executed directly
// version "binance-api-node": "0.12.9"
'use strict'; const { default: Binance } = require('binance-api-node'); async function main() { const binanceConfig = { apiKey: process.env.API_KEY, apiSecret: process.env.API_SECRET, proxy: process.env.PROXY_URL, }; console.log('binanceConfig:', binanceConfig); const binanceClient = Binance(binanceConfig); const deposits = await binanceClient.depositHistory({ limit: 100 }); console.log('deposits:', deposits); } main().catch(error => { console.error(error); })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When specifying a proxy parameter of the form
http://ip:port
the request does not reach the proxy server and is executed directly
// version "binance-api-node": "0.12.9"
The text was updated successfully, but these errors were encountered: