我已使用以下腳本來使用Commission Junction提供的REST Web服務。我能夠得到響應,但響應不是xml格式。PHP REST webservices Curl幫助
<?php
$targeturl="https://support-services.api.cj.com/v2/countries";
$CJ_DevKey= "xxxxxxxxx";
// return xml feed from CJ
$ch = curl_init($targeturl);
curl_setopt($ch, CURLOPT_POST, FAlSE);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: '.$CJ_DevKey));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$response = curl_exec($ch);
curl_close($ch);
echo $response; // will print in browser all country codes in an xml format
/*
ADD YOUR OWN CODE HERE TO DO WHAT YOU WANT WITH THE RESPONSE. MAYBE SAVE RESULTS TO A FILE OR THE PARSE THE RESULTS INTO A DATABASE?
*/
?>
我只是困惑。是不是使用REST webservices時的響應始終是xml格式。如果我錯了,請糾正我。
有人請看看這個腳本,並建議我需要做什麼才能獲得在XML響應?我想將響應保存在xml文件中,然後再進行處理。
REST服務可以返回任何媒體類型,而不僅僅是XML。 – 2010-10-07 11:31:49