我正在尝试向Binance的API发送GET
请求,但我不知道该怎么做。这是文档页面:https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md#account-information-user_data
我有一个私人的apiKey
和secretKey
。我可以向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."
}
谢谢。
根据文档,这可能是您想要的。
API密钥通过
X-MBX-APIKEY
标头传递到Rest API。
在您的请求中,将其添加为标题密钥,并将您的API密钥添加为值。