how to access JIRA ticket by passing token via URL

Lucy Lu September 23, 2015

I am trying to access a jira ticket. How can I pass along the authentication token via a parameter in the URL, which I can provide the parameters os_username and os_password in the request URL (e.g.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 in clear text, which may not be an option.

Is there a way to pass token like http://jira.atlassian.com/browse/TST-1?token=USERTOKEN? 

1 answer

0 votes
GabrielleJ
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
September 24, 2015

Try using a cookie?

curl -u $USR:$PWD --cookie-jar $COOKIE_FILE_LOCATION -sS --output /dev/null $JIRA_URL

Suggest an answer

Log in or Sign up to answer