我看到消費使用curl Web服務這篇文章:Consume WebService with phpPHP - 使用curl消費該Web服務
,我試圖跟隨,但還沒有運氣。我上傳了我想訪問的Web服務的照片。我將如何制定我的要求給出下面的例子中,假設URL是:
https://site.com/Spark/SparkService.asmx?op=InsertConsumer
我嘗試這一點,但它只是返回一個空白頁:
$url = 'https://xxx.com/Spark/SparkService.asmx?op=InsertConsumer?NameFirst=Joe&NameLast=Schmoe&PostalCode=55555&[email protected]&SurveyQuestionId=76&SurveyQuestionResponseId=1139';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
$xmlobj = simplexml_load_string($result);
print_r($xmlobj);
幾乎但並非相當的重複數據刪除:http://stackoverflow.com/questions/7326589/php-how-to-make-a-proxy-for-a-web-service –
該職位已被刪除。 – mheavers