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?
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
). The problem with this method is that it transmits your username and password across the wire in clear text, which may not be an option for some users.http://mycompany.com/anypage?os_authType=basic
). This will force the server to issue a challenge for user credentials (i.e. a login prompt) via the basic http authentication protocol. If you are running over SSL, you still need to specify the os_authType=basic parameter if you require the user to authenticate.
Understand that this is a document relating to JIRA 6.1 EAP, and does not apply to OnDemand.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
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.