0

how can I get the consumer key, Signature and consumer secret(dynamically) from the server(OAuth1). So, that I can pass it in Headers->Authorization to execute my routes(register) in Postman.

mk2683
  • 537
  • 1
  • 3
  • 15

1 Answers1

0

I was able to get consumer key and Signature by registering client by making POST request at {{url}}/api/client/register

Sent the following code in the Body:

{
  "type": "client_associate",
  "application_name": "Your Application Name",
  "application_type": "web" 
}
mk2683
  • 537
  • 1
  • 3
  • 15