由于https://github.com/coinbase/gdax-node#the-authenticated-api-client
const key = 'your_api_key';
const b64secret = 'your_b64_secret';
const passphrase = 'your_passphrase';
const apiURI = 'https://api.gdax.com';
const sandboxURI = 'https://api-public.sandbox.gdax.com';
const authedClient = new Gdax.AuthenticatedClient(key, b64secret, passphrase, apiURI);
什么是 b64secret?我在哪里/如何得到它?它是 gdax 提供的字符串吗?我应该生成它吗?
我可以承认,对密码学知之甚少。
感谢您的帮助或有用的链接。