以下の内容はhttps://blog.systemjp.net/entry/2017/10/17/235204より取得しました。


C++ REST SDK サンプル Bing検索

#include <cpprest/http_client.h>

...

// Create http_client to send the request.
http_client client(U("http://www.bing.com/"));

// Build request URI and start the request.
uri_builder builder(U("/search"));
builder.append_query(U("q"), U("cpprestsdk github"));

auto t1{client.request(methods::GET, builder.to_string()); };

t1.then([](http_response res) {
	std::wstring s1{ res.extract_string().get().c_str() };
	wprintf(s1.c_str());
}).wait();




以上の内容はhttps://blog.systemjp.net/entry/2017/10/17/235204より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14