Reputation: 27
I want connect to Coinbase OAUTH to the instructions here https://developers.coinbase.com/docs/wallet/coinbase-connect/integrating
in Step 1: I need to construct the authorization URL with the correct parameters and scopes
GET https://www.coinbase.com/oauth/authorize?response_type=code&client_id=1532c63424622b6e9c4654e7f97ed40194a1547e114ca1c682f44283f39dfa49&redirect_uri=https%3A%2F%2Fexample.com%2Foauth%2Fcallback&state=134ef5504a94&scope=wallet:user:read,wallet:accounts:read
to receive code parameter, but it response to the iframe recapcha of coinbase, but not must be code parameter
How do i get the code parameter, Thanks everyone.
Upvotes: 0
Views: 181
Reputation: 405
On your Application screen, there is a clickable Sample Authorize URL that you can use to make a valid request and get the code
.
Upvotes: 0