0

コマンドを模倣するためにlibcurlを使用してデータをPUTしようとしています

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-pistonでDjangoを使用していますが、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 に答える