ccxt: Bitmart signIn Invalid Request error.
Trying to signIn to use authenticated api routes, keep getting this error.
- OS: Ubuntu
- Programming Language version:Node 8.15
- CCXT version: 1.30.39
var bitmart = new ccxt.bitmart({
apiKey: 'BITMART_KEY',
secret: 'BITMART_SECRET',
uid: 'BITMART_MEMO'
});
bitmart.signIn().catch(err => {
log.info(err)
});
2020-06-24 15:24:32.879 INFO bitmart {"message":"Invalid request"}
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Comments: 17 (10 by maintainers)
Figured out what was wrong, they have Old api: https://www.bitmart.com/oldapi/en And new api: https://www.bitmart.com/api/en By default it has given me the new api page and that api keys don’t work. It is still in BETA. So all in all that has been taken care of 😃 Thanks a lot for your help!!!