0

我正在尝试使用 libcurl 来模拟命令

curl -u test:test -X PUT --data-binary @data.yaml "http://127.0.0.1:8000/foo/"

哪个工作正常。我的选择如下:

curl_easy_setopt(handle, CURLOPT_USERPWD, "test:test");
curl_easy_setopt(handle, CURLOPT_URL, "http://127.0.0.1:8000/foo/");
curl_easy_setopt(handle, CURLOPT_VERBOSE, 1);
curl_easy_setopt(handle, CURLOPT_UPLOAD, 1);
curl_easy_setopt(handle, CURLOPT_READFUNCTION, read_data);
curl_easy_setopt(handle, CURLOPT_READDATA, &yaml);
curl_easy_setopt(handle, CURLOPT_INFILESIZE, yaml.size());
curl_easy_perform(handle);

我相信该read_data功能可以正常工作,但是如果您问,我会发布该代码。

我正在使用 Django 和django-piston,我的update函数永远不会被调用!(当我使用上面的命令行版本时会调用它。)

libcurl 的输出是:

* About to connect() to 127.0.0.1 port 8000 (#0)
*   Trying 127.0.0.1... * connected
* Connected to 127.0.0.1 (127.0.0.1) port 8000 (#0)
* Server auth using Basic with user 'test'
> PUT /foo/ HTTP/1.1
Authorization: Basic dGVzdDp0ZXN0
Host: 127.0.0.1:8000
Accept: */*
Content-Length: 244
Expect: 100-continue

* Done waiting for 100-continue
** this is where my read_data handler confirms: read 244 bytes **
* HTTP 1.0, assume close after body
< HTTP/1.0 400 BAD REQUEST
< Date: Thu, 13 May 2010 08:22:52 GMT
< Server: WSGIServer/0.1 Python/2.5.1
< Vary: Authorization
< Content-Type: text/plain
< 
Bad Request* Closing connection #0
4

1 回答 1

0

我没有给出正确的标题。使用 运行命令行版本时-v,它给出了标题

Content-Type: application/x-www-form-urlencoded

用 libcurl 添加它:

struct curl_slist *slist = 0;
slist = curl_slist_append(slist, "Content-Type: application/x-www-form-urlencoded");
curl_easy_setopt(handle, CURLOPT_HTTPHEADER, slist);
// ...

curl_easy_perform(handle);

curl_slist_free_all(slist);

它有效!

于 2010-05-13T17:21:37.260 回答