We have an application which supports oauth authorization. We want to authorize this application to access JIRA resources. Do we need to implement any custom plugin in JIRA to do that or JIRA provide out of the box support for oAuth. I was going through https://developer.atlassian.com/server/jira/platform/jira-rest-api-example-oauth-authentication-6291692/
It seems that we to provide these url and oauth authentication will work out of the box
request token url | JIRA_BASE_URL + "/plugins/servlet/oauth/request-token" |
authorization url | JIRA_BASE_URL + "/plugins/servlet/oauth/authorize"" |
access token url | JIRA_BASE_URL + "/plugins/servlet/oauth/access-token" |
oauth signing type | RSA-SHA1 |