go-binance icon indicating copy to clipboard operation
go-binance copied to clipboard

A Go SDK for Binance API

Results 114 go-binance issues
Sort by recently updated
recently updated
newest added

when listenKey expired get error:json: cannot unmarshal string into Go struct field WsUserDataEvent.E of type int64? about an hour,which code should like this : doneC, stopC, err := futures.WsUserDataServe(listenKey, func(event...

follow test code: client.NewKeepaliveUserStreamService().ListenKey(listenKey).Do(newContext()), I have few questions. how long is the listenKey valid?

I had met error: code=-1106, msg=Parameter 'reduceonly' sent when not required. what happened?reduceonly has set false.

How to enter crypto box codes?

use code: const secretKey = "XXXXXX" const apiKey = "XXXXX" const base_testnet_binance_url = "https://testnet.binance.vision/api" client := NewClient(apiKey, secretKey) client.SetApiEndpoint(base_spot_binance_url) permission, err := client.Do(context.Background()) if err != nil { fmt.Println("error:", err)...

This is with the futures client. WsUserDataServe function err handler returns: 2023/08/30 20:28:39 Error unmarshal. {"e": "listenKeyExpired","E": "1693427319838","listenKey": "KEY"} 2023/08/30 20:28:39 Received error: json: cannot unmarshal string into Go struct...

I tried to test ping with this simple code: ``` golang package main import ( "context" "fmt" "time" binance_connector "github.com/adshao/go-binance/v2" ) func main() { Ping() } func Ping() { client...

Two days can't receive any Kline information using futures testnet, code is below, everything working on mainnet, and two days ago everything was fine on testnet, now receiving nothing ```go...

Please refer to https://binance-docs.github.io/apidocs/spot/en/#funding-wallet-user_data Author, please contact me if you need help maintaining the project and helping with the codebase @orangesensation TG or [email protected]

Is there any way of retrieving all Symboltickers without specifying a symbol or symbols array to the ListSymbolTickerService? This is possible in the node, binance and python implementation of the...