I m trying to generate a refund ticket using ClickBank API. I am getting following error:
> Warning: file_get_contents(https://api.clickbank.com/rest/1.2/tickets/749MK99E?reason=ticket.type.refund.8&type=rfnd) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request in /home/content/11/8201911/html/DS_test/rfndcheck.php on line 17
And here is my source code
<?php
$cbreceipt='749MK99E';
//$cbreceipt=$_POST['cborderreceipt'];
$options = array(
'http'=>array(
'method'=>"POST",
'header'=>
"Accept: application/xml\r\n".
"Authorization: DEV-123:API-123\r\n"
)
);
$context = stream_context_create($options);
$xml="";
$xml = file_get_contents('https://api.clickbank.com/rest/1.2/tickets/'.$cbreceipt.'?reason=ticket.type.refund.8&type=rfnd',false,$context);
echo $xml;
?>