I am developing an app in c# accessing the CoinBase Api. After the user enters their credentials, I get a code from the api on the callback. I exchange the code for an access_token. I do get a Token with access_token, token_type, refresh_token, expires_in, scope. Everything is populated from CoinBase.
The problem is when I copy that access_token into Postman, I get back invalid_token. Here is how I make the call:
Api Url:
With these headers:
Content-Type:application/json
Authorization:bearer <access_token here>
CB-VERSION:2018-02-09
The other interesting thing is that if I paste my access_token into jwt.io it can't read it. It shows the headers with lots of weird ascii chars like: mÖß§Ü
Any clues why this is happening? I use the exact calls in Postman on other Api's and they work fine....
Thanks for the insight, Jeff