When my app requests wallet:accounts:read permission
using v2 of Coinbase API, the user is presented with a drop-down list of all accounts where he can choose only one of the three possible wallets. If my app wants to work with all three wallets (e.g. BTC, ETC, LTC), what is an elegant solution? Connecting with OAuth three times, each time requesting the user to grant access to a specific wallet is not a clean workaround. How can the app request permission to all of the accounts with a single request?
标签:
coinbase-api
相关问题
- Coinbase transfer between accounts returns “Not fo
- Invalid Signature Coinbase
- Coinbase APIerror(id = ) in python
- Api key authentication for coinbase
- Get Coinbase wallet list with RestSharp library
相关文章
- Api key authentication for coinbase
- Get Coinbase wallet list with RestSharp library
- Why do I still get error code 400 from this API re
- R httr GET request 400 error GDAX
- How to view coinbase transaction activity
- CoinBase “invalid signature” PHP Buy API Request
- How to declare CURL body for CoinBase API call
- How many Bitcoin addresses can I generate through
According to the Coinbase docs, in the
GET https://www.coinbase.com/oauth/authorize
portion of the Oauth flow, you can optionally specify the parameteraccounts
to configure which accounts your application has access to.Adding this parameter allowed me to get access to all accounts associated with a user!