0
C使用libcurlのcurl_easy_perform後、スペースとドットコードは以下の例のようなものであるアンダーC用のlibcurlのcurl_easy_performポスト、スペース及び
によって置き換え下線で置き換えドット。他の側では、受信したデータが間違っている
:
は期待:<Text>data to send...</Text>
実際:<Text>data_to_send___</Text>
CURL *curl = curl_easy_init();
if(curl) {
const char *data = "<Text>data to send...</Text>";
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, data);
}
誰もがその理由を知っていますか?
返信いただきありがとうございます。はい、私はhttpヘッダーを設定していないので、正しいですが、宛先はxmlのみ受け付けます。 !だからこの問題は起こった! – Jason