I am trying to encode the stackstorm web ui link (shorten it [without using the st2-api-key] with the stackstorm id sending it to a proxy where it will populate the default observer username and password and automatically go directly to the history of the stackstormId, however, that is proving to be harder than I thought. How can I accomplish this. Here is what I am using as a proxy that passes the stackstormId in, but I am unable to get the login to accept this, what am I missing? I have a default user and password for the observer…
doing this in php + curl
testProxy-2.php
<?php
$username = "devOps-obs***r";
$password = "*******";
if(isset($_GET["stackstormId"])){
$stackstormId = escapeshellcmd($_GET['stackstormId']);
$secretpage = "https://******-stg-01.force10networks.com/#/history/$stackstormId";
}else
$secretpage = "https://******-stg-01.force10networks.com/#/history";
#$_SERVER['PHP_AUTH_USER']=$username;
#$_SERVER['PHP_AUTH_PW']=$password;
$ch = curl_init();
curl_setopt($ch, CURLOPT_VERBOSE, TRUE);
curl_setopt($ch, CURLOPT_URL, $secretpage);
curl_setopt($ch, CURLOPT_STDERR, $verbose);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_MAXREDIRS, 4);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Accept-Encoding: gzip, deflate',
'Accept: */*',
'User-Agent: python-requests/2.11.1',
'Connection: keep-alive',
'content-type: application/json'
)
);
$curl_result = curl_exec($ch);
// $output contains the output string
$output = curl_exec($ch);
echo $output;
// close curl resource to free up system resources
curl_close($ch);
?>
Any help would be greatly appreciated.