json を http put したい - Printable Version +- Curl Global Community (https://communities.curl.com) +-- Forum: Discussions (https://communities.curl.com/forumdisplay.php?fid=1) +--- Forum: General Curl questions (https://communities.curl.com/forumdisplay.php?fid=2) +--- Thread: json を http put したい (/showthread.php?tid=1204) |
json を http put したい - Kaneko - 02-18-2015 こんにちは。REDMINEのクライアントを実装してみようと思うのですが、 json についての紹介では getする方法しか書かれていません。 httpでjsonをpostしたりputしたりするには、どんなクラスを使えばいいのでしょうか? JsonValue-write というのがありますが、これはローカルにファイル保存するためのAPIなのかしら。。 RE: json を http put したい - hokada - 02-23-2015 HttpRequestDataを継承したクラスを作り、そのオブジェクトにJsonの文字列を保存して、 HttpFile.http-read-openを使えば、投げれます。 (request-dataにそのHttpRequestDataを継承したオブジェクト、request-methodでputやpost。) |