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.
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
The only cookie that is set is "Set-Cookie: studio.crowd.tokenkey"
You will need to also set the JSESSIONID cookie.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.