wellsfargo case

This commit is contained in:
Ivan Dimitrov 2023-11-16 10:17:43 +02:00
parent 2c56851baa
commit 1de7010425

View File

@ -26,4 +26,6 @@ For that reason I will not go into too much detail about the use cases as I'm no
One use case documented on their website is the API Keys endpoint. One use case documented on their website is the API Keys endpoint.
To generate an API key you need your client credentials with a key and a secret in this format `Authorization: Basic base64(consumerKey:consumerSecret)` To generate an API key you need your client credentials with a key and a secret in this format `Authorization: Basic base64(consumerKey:consumerSecret)`
as well as the scope in the form `grant_type=client_credentials&scope=accounts`. There are hundreds of scopes to configure.
This gives you an `access_token` which is valid for 24 hours, has the scopes (permissions) you requested and is used for most API communications.