You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the same problem in https://api.coinex.com/v1/order/market. The signature is correct when I tried to return me the balance of the wallet, but when I try to buy the API return me "Signature Incorrect".
Formation signature for order/market:
sign_str = f"access_id={access_id}&tonce={current_time}&secret_key={secret_key}"
md5 = hashlib.md5(sign_str.encode())
signature = md5.hexdigest().upper()
It's equal to the demo code.
The request is:
POST https://api.coinex.com/v1/order/market
Body(JSON):
{
"access_id": "xxx",
"market": "BTCUSDT",
"type": "buy",
"amount": "50.000",
"tonce": xxx
}
Request['Authorization'] = "XXX"
i just tried work with coinex api but both node and python 3 demo return Signature Incorrect... any help?
The text was updated successfully, but these errors were encountered: