Post data using https://
Posted: Fri Aug 20, 2010 11:46 am
Is it possible to use the post command with urls starting with https://
I ask because it doesnt seem to be working for me!
As an example
on the server itself I simply have a small iRev page to send me back the buffer so I can see what has been posted.
The above works fine with a http:// start to the url, but if I change it to https:// to send the request in what I would imagine to be a secure way, the server does not get the data ($_POST_RAW is empty).
Andy
I ask because it doesnt seem to be working for me!
As an example
Code: Select all
put "http://www.myurl.com/test.irev" into tURL
put libUrlFormData ("key", tMyKey , "user", tUserName, "device", tDevice, "syncID", tSync) into tData
post tData to URL tURL
put it into tResult
Code: Select all
<h1>Test Post</h1>
<?rev
put "Post buffer contains: " & $_POST_RAW
?>
Andy