We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the document, it's not recommended to use nonce for authentication.
https://www.bitmex.com/app/apiKeysUsage#Authenticating-with-an-API-Key
The new recommended way to authenticate is to use expires fir signature calculation, and it's also supported in WebSocket API.
https://www.bitmex.com/app/wsAPI#Authentication
So we can add authKeyExpires method.
authKeyExpires
The text was updated successfully, but these errors were encountered:
note: Python implementation is here. https://github.com/BitMEX/sample-market-maker/blob/master/market_maker/auth/APIKeyAuthWithExpires.py
Sorry, something went wrong.
I'm working on this now.
Sign the initial upgrade request in the same manner you would sign other REST calls (api-* headers), or
This way is not working as expected. I'll send a ticket to the BitMEX support.
After connection, send an "authKeyExpires".
This way works fine at my local branch.
I'll send a Pull Request later.
Hello, ok, thank you. Looking forward to PR
No branches or pull requests
According to the document, it's not recommended to use nonce for authentication.
https://www.bitmex.com/app/apiKeysUsage#Authenticating-with-an-API-Key
The new recommended way to authenticate is to use expires fir signature calculation, and it's also supported in WebSocket API.
https://www.bitmex.com/app/wsAPI#Authentication
So we can add
authKeyExpires
method.The text was updated successfully, but these errors were encountered: