I am trying to access to the source page of a jira ticket. How can I pass along the authentication token via a parameter in the URL, which I can then incorporate into the URL I pass to my program and read the source page.
lets say I have the base url (e.g., https://me.atlassian.net) and the username (e.g., un), password (e.g., psw), is that sth like this?
https://me.atlassian.net/?os_username=un&os_password=psw
When accessing data generated from JIRA, you may find that access to some resources requires user authentication (i.e. requires you to login). There are three options for this:
http://jira.atlassian.com/browse/TST-1?os_username=tester&os_password=tstpassword
http://mycompany.com/anypage?os_authType=basic
It's not a good idea to pass your pasword in clear text and I also think that's not possible in the way you describe as the JIRA login is done through POST request. Consider using the JIRA REST API to get the ticket contents https://docs.atlassian.com/jira/REST/latest/
Which programming language are you using? There are various examples showing you how to use basic authentication.
https://confluence.atlassian.com/display/DOCSPRINT/The+Simplest+Possible+JIRA+REST+Examples
I am using Objective-C. I just need to parse some part of the source page of jira tickets. Since it works for other open source bug repositories, I would like to make that working for another JIRA repository with login.
you can use the base64 encoded method, check this doc
http://www.j-tricks.com/1/post/2012/05/java-rest-client-for-jira-using-jersey.html
Understand that this is a document relating to JIRA 6.1 EAP, and does not apply to OnDemand.
It looks like you're new here. Sign in or register to get started.