Get Consumer key and Signature from Pump.io server

25 Views Asked by At

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.

1

There are 1 best solutions below

0
mk2683 On BEST ANSWER

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" 
}