How do we send access token Rest API request using OAuth through Postman?

Aneesh Munnam May 26, 2020

I created access-token using steps from: https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-oauth-authentication/. I am trying to make get Issue rest call through postman using the access-token generated. I tried in multiple ways:

1. Using Authorization OAuth 1.0 configuration.

2020-05-26 17_10_42-Postman.png

When making this request I get oauth_problem=signature_method_rejected response.

2. Using access-token as Header:

2020-05-26 17_15_38-Postman.png

When making this request I get 403 Forbidden issue. Is there any other way in handling this? Even trying to add it as param also results in same issue.
I am trying to attach this to my Spring Application using Spring Security. Can't we make postman requests with OAuthn generated Access-token?

1 answer

0 votes
Aneesh Munnam May 27, 2020

The issue is with signature_method. the signature_method needs to be RSA-SHA1 which is not currently supported with Postman.

Suggest an answer

Log in or Sign up to answer