Post
Topic
Board Service Discussion
Topic OP
accessing coinbase API using node.js
by
btc junkie
on 06/05/2017, 05:27:13 UTC
I'm having problems doing the simplest tasks such as displaying balance. I'm no pro at node.js but I think I should know enough to do this. Is anyoine familiar with the coinbase node.js API?

 Their website contains some basic code for listing accounts but this always returns NULL when I run it:

        var Client = require('coinbase').Client;
        var client = new Client({'apiKey': 'myApiKeyHere',
                         'apiSecret': 'myApiSecretHere'});

        client.getAccounts({}, function(err, accounts) {
          console.log(accounts);
        });

Does anyone have any experience with using this API? I'm willing to offer a $15 tip or more in btc if someone can help me with this API and some of the other node.js APIs. If you are willing to teach me this stuff for a higher fee then feel free to PM me about it. But I'm running on a low budget so I'm not in a position to pay the price of hiring a professional node.js developer.