邮递员 GET 请求 Binance API邮递员、GET、API、Binance

2023-09-07 10:37:15 作者:我兜里有糖看你怎么抢

我正在尝试向 Binance 的 API 发送 GET 请求,但我不知道该怎么做.这是文档页面:https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md#account-information-user_data

I'm trying to send a GET request to Binance's API, but I don't exactly know how to. Here is the documentation page: https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md#account-information-user_data

我有一个私人 apiKeysecretKey.我可以向 Binance 提出一般性请求,但我无法使用我的私钥获取我的私人数据.

I have a private apiKey and secretKey. I can do a general request to Binance, but I cannot get my private data, using my private keys.

第一次尝试:对于 Postman 中的 GET 请求,我使用以下字符串:https://api.binance.com/api/v3/account?timestamp=1499827319559&signature=here_I_put_my_secret_key

First try: For the GET request in Postman I use this string: https://api.binance.com/api/v3/account?timestamp=1499827319559&signature=here_I_put_my_secret_key

我作为 header 传递,因为 Danny 建议使用 apiKey.

And I pass as a header as Danny suggested the apiKey.

但我明白了:

    {
    "code": -1021,
    "msg": "Timestamp for this request is outside of the recvWindow."
    }

谢谢.

推荐答案

我在 Postman 中使用 javascript 解决了这个问题.另一个简单的解决方法是使用 ccxt 库:https://github.com/ccxt/ccxt

I solved this correcting the time using javascript in Postman. Another easy fix is to use the ccxt library : https://github.com/ccxt/ccxt