我想触发以下类型的curl请求,但似乎没有传递所有必需参数并且它返回错误:缺少参数ID
但是,如果我以下列形式提出请求: http://brc.rebretstest.interealty.com/GetMetadata.asmx/GetMetadata?ID=0&Type=METADATA-RESOURCE&Format=STANDARD-XML
它不会返回任何错误,但没有显示任何数据,因为其他参数未正确传递
我正在通过PHP编写标准卷曲请求,代码:
$ch = curl_init(); // start CURL
curl_setopt($ch, CURLOPT_URL, $url); // set your URL
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); // get the response as a variable
curl_setopt($ch, CURLOPT_HTTPGET, TRUE);
curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE);
$response = curl_exec($ch); // connect and get your response
curl_close($ch);