I've set up a site that can successfully store access tokens and grab the account balance, per the example in the Coinbase PHP library.
I'm a little stuck now; It isn't obvious to me how to employ the various api calls available for Coinbase. I'm sure I can figure this out eventually, but I want to make sure I'm not ignoring some functionality that is already built into the Coinbase PHP library
My assumption is that I need PHP to make authenticated JSON requests to Coinbase. Is that code something I need to write from scratch, or am I missing an example in the PHP library?
For example, I want to display the authenticated user's name on my site after they authorize the app. I don't see a built-in function for that in the PHP Library, so I assumed I needed to use the https://coinbase.com/api/v1/users call.
Can someone point me to an example of how this is actually done?