How do I view the raw signature that Postman uses when it makes its OAuth requests?

I am using Postman 5.1.3. I am trying to connect to an OAuth 1.0a endpoint using the Postman OAuth screen. How do I view the raw signature that Postman uses to create its hashed oauth_signature parameter? I fill in the value for

consumer_key consumer_secret signature_method timestamp nonce version 

I leave the HTTP method as "GET" and click on "Submit". Everything goes fine, but I can’t reproduce the behavior in Java, so I’m looking for a way to view the raw signature that Postman uses to build its request.

+7
oauth digital-signature postman
source share
1 answer

To generate a signature, the postman follows the RFC, it makes no sense to display the steps for creating it, so it is not available on the display.

RFC is section 5849 of section 3.4 for signature materials. This is pretty clear.

0
source share

All Articles