Skip to content

Instantly share code, notes, and snippets.

@theredstapler
Created October 15, 2016 07:21
Show Gist options
  • Save theredstapler/e5f636e3e7cf74dd69ddcd3d4f4ba613 to your computer and use it in GitHub Desktop.
Save theredstapler/e5f636e3e7cf74dd69ddcd3d4f4ba613 to your computer and use it in GitHub Desktop.
<?php
$ch = curl_init('http://redstapler-pc:8080/rest/auth/1/session');
$jsonData = array(
'username' => $_POST['username'],
'password' => $_POST['password'] );
$jsonDataEncoded = json_encode($jsonData);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
$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 {
setcookie($sess_arr['session']['name'], $sess_arr['session']['value'], time() + (86400 * 30), "/");
echo "Login Success!";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment