REST authentication not setting cookies

Joseph Baldini May 27, 2013

I've been having a difficult time around authenticating a user remotely to my onDemand JIRA project. I'm creating a little dashboard and would like the users to login, view a certain query of issues, and when clicked taken to that specific issue's details. Currently "authenticating" with my below code results successful but, not setting cookies correctly (i assume) as users once clicked to details are asked to login again on the OnDemand project. Here is an abstract of my code.

Step 1: User enters user/pass on form and CURL is executed:

$url = "http://5thandpacific.atlassian.net/rest/auth/latest/session";

curl_setopt ($this->ch, CURLOPT_POST, true);
curl_setopt ($this->ch, CURLOPT_URL,$url);
curl_setopt ($this->ch, CURLOPT_TIMEOUT, 0);
curl_setopt ($this->ch, CURLOPT_FOLLOWLOCATION,1);
curl_setopt ($this->ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($this->ch, CURLOPT_USERPWD, "[USERNAME]:[PASSWORD]");
curl_setopt ($this->ch, CURLINFO_HEADER_OUT, true);
curl_setopt ($this->ch, CURLOPT_HEADER, true);

HERE IS THE OUTPUT:

However, when I click over to see details of the issue I'm asked to login again. The only cookie that is set is "Set-Cookie: studio.crowd.tokenkey". This is a OnDemand project and i've really tried at minimum a dozen examples (even down to command line CURL through PHP exec) but, no luck. I'm running the dashboard on a LAMP environment trying to authenicate a user and keep persistant cookie/session. Any help would be a dramatic time and stress saver for me.

2 answers

0 votes
David Lemon May 28, 2013

url = new URL(urlString);
connection = (HttpsURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type", "application/json");

String cookie = connection.getHeaderField("Set-Cookie");

now use this cookie value on all the connections throughout you project

0 votes
Michael Knight
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 28, 2013

The only cookie that is set is "Set-Cookie: studio.crowd.tokenkey"

You will need to also set the JSESSIONID cookie.

Joseph Baldini May 28, 2013

I assumed that but, don't know how. Is this something I can do with the above code? Am I creating a cookie through PHP? Do you have an example?

Suggest an answer

Log in or Sign up to answer