Skip to content

Instantly share code, notes, and snippets.

@theredstapler
Created October 15, 2016 07:22
Show Gist options
  • Save theredstapler/471c1c3eaaa528f5245f8a1dbc5b1cb6 to your computer and use it in GitHub Desktop.
Save theredstapler/471c1c3eaaa528f5245f8a1dbc5b1cb6 to your computer and use it in GitHub Desktop.
<?php
$ch = curl_init('http://redstapler-pc:8080/rest/api/2/user?username='.$_POST['username']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
if(isset($_COOKIE['JSESSIONID']))
$cookiestr='JSESSIONID='.$_COOKIE['JSESSIONID'];
else
$cookiestr="";
curl_setopt($ch, CURLOPT_HTTPHEADER, array('cookie:'.$cookiestr));
$result = curl_exec($ch);
curl_close($ch);
$sess_arr = json_decode($result, true);
if(isset($sess_arr['errorMessages'][0])) {
echo $sess_arr['errorMessages'][0];
}
else {
echo $sess_arr['displayName'];
echo "\n";
echo $sess_arr['emailAddress'];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment