HTTPClientクラスの機能でPOSTメソッド通信したい
布川 2016/10/09(Sun) 09:07
Reputeless 2016/10/09(Sun) 13:36
[1]
サンプルとして、Twitter に投稿する API での使用例です。
HTTPClient client;
const std::string param = "oauth_consumer_key= ... (必要なパラメータ) ";
client.requestPOST(
L"https://api.twitter.com/1.1/statuses/update.json",
L"",
¶m[0],
param.length(),
L"Content-Type: application/x-www-form-urlencoded\r\n"
);
[2]
HTTPClient::wait() は HTTPClient::downloadAsync() で開始した非同期ダウンロードが
完了するか、失敗するまで制御を返さず待機する関数です。