How to use Jira rest api if it uses SAML and SSO

Madhavi September 15, 2016

Problem with using Jira rest API. I want to hit the jira and has to get the issues,scenarios from jira through java standalone.

My company using Jira with SAML and SSO. If I directly pass jira url https://jira.mycompany.com and with the basic credentials to the jira rest api it throws "peer not authenticated" exception.Caused by: javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated. when I mouse hover on the JIRA link in my company website it shows the following url.

https://mycompany.com/M2/saml20/logininitial?RequestBinding=HTTPPost&PartnerId=https://jira.mycompany.com/plugins/servlet/samlsso&NameIdFormat=email.

Can some one help me on this how to use jira rest api for this problem? Thanks in advance

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 15, 2016

I think you need to start with a look at how you have implemented SAML and SSO - what is that expecting incoming connections to do to provide user authentication?

Madhavi September 16, 2016

When I click on JIRA  it calls the action with post method along with SAMLResponse text and Relaystate as a hidden variables.Like this <form method="post"action="https://jira.mycompany.com/plugins/servlet/samlsso">.

Through browser i can able to get the JSON response from JIRA rest api  https://jira.mycompany.com/rest/api/2/issue/key 

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 16, 2016

Ok, so your REST call needs to pass the same tokens that your browser is.

Madhavi September 16, 2016

Need to add SAMLResponse at the end of rest call?

 Like :/rest/agile/1.0/SAMLResponse_tokens

Harinath T December 7, 2017

Madhavi

Madhavi

Do you have the solution now, actually I need the same scenario as you asked earlier replies, can you please provide me the details how you achieved this. Thanks in advance.

Suggest an answer

Log in or Sign up to answer