我正在調用RESTful API的程序。 api的所有文檔都是cURL命令,但是我不能創建cURL命令,所以我需要翻譯它們並以不同的方式提出請求。這是他們爲我想要創建的查詢提供的示例代碼。這個cURL命令中的-d是什麼意思?
curl -u '{userEmail}:{userApiToken}' -v -X GET -H 'Content-Type: application/xml' -o 'result.xml' -d '<request><layout>1</layout><searchmode>Cany</searchmode><searchvalue>aaron</searchvalue><filtermode></filtermode><filtervalue></filtervalue><special></special><limit>100</limit><start></start><sortfield></sortfield><sortdir></sortdir></request>' https://secure.website.com/contacts `
我一直在cURL文檔,並瞭解除-d以外的所有標誌。我得到它的參數是xml的搜索參數,但是-d在GET捲曲中意味着什麼?
謝謝
這就是我的想法。但我不認爲GET請求有屍體。我錯了嗎? – user3708584
我已經擴展了我的答案 – Sjon