向Binance API的邮递员GET请求

问题描述 投票:2回答:1

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

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

首先尝试:对于邮递员中的GET请求,我使用以下字符串:https://api.binance.com/api/v3/account?timestamp=1499827319559&signature=here_I_put_my_secret_key

并且我以header的身份通过,就像Danny建议的apiKey

但是我得到:

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

谢谢。

post get request postman binance
1个回答
1
投票

根据文档,这可能是您想要的。

https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md#endpoint-security-type

API密钥通过X-MBX-APIKEY标头传递到Rest API。

在您的请求中,将其添加为标题密钥,并将您的API密钥添加为值。

© www.soinside.com 2019 - 2024. All rights reserved.