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.
Can some one help me on this how to use jira rest api for this problem? Thanks in advance
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?
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, so your REST call needs to pass the same tokens that your browser is.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.