Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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;
?>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.