Generating an OAuth Token - Steps using R
Generating an OAuth Token - Steps using R
(OP)
Appreciate some timely insight!
Novice - first time attempting to extract data via an API.
I obtained a API Key and the Secret.
Converted to base64.
Now perplexed as to the next step where the instructions that I have state that I should "Enter the generated base64value in the header and request body and call the token URI as shown below;
Any insight as to if R can be used to obtain the OAuth Token?
If so, what are the required packages that I need to install?
Thanks in advance.
Novice - first time attempting to extract data via an API.
I obtained a API Key and the Secret.
Converted to base64.
Now perplexed as to the next step where the instructions that I have state that I should "Enter the generated base64value in the header and request body and call the token URI as shown below;
CODE
Authorization: Basic {base64value} Content-Type: application/x-www-form-urlencoded POST https://api.destination.com/oauth/token grant_type=client_credentials
Any insight as to if R can be used to obtain the OAuth Token?
If so, what are the required packages that I need to install?
Thanks in advance.
RE: Generating an OAuth Token - Steps using R
Attempting to generate an oauth token.
Thanks in advance.
CODE