CppRequests 0.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package CppRequests --version 0.0.3
NuGet\Install-Package CppRequests -Version 0.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CppRequests" Version="0.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CppRequests --version 0.0.3
#r "nuget: CppRequests, 0.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CppRequests as a Cake Addin
#addin nuget:?package=CppRequests&version=0.0.3

// Install CppRequests as a Cake Tool
#tool nuget:?package=CppRequests&version=0.0.3

入门(Get Started)

#include <iostream>
#include <string>
#include "requests.h"
using namespace std;
using namespace requests;
int main(int argc)
{
Response resp = Get("https://baidu.com");
cout << resp.status << endl;
cout << resp.GetText() << endl;
return 0;
}

Get获取网页内容(Use Get)

Response resp = Get("https://pan.baidu.com/disk/home");
cout << resp.GetText() << endl; `

Post请求使用,上传json数据(Post with Json)

map<string, string> data;
data["name"] = "cpp";
data["age"] = "14";
Response resp = Post("http://47.106.162.182:8080/post.php", data);
cout << resp.status << endl;
cout << resp.GetText() << endl;

Put上传文件(Use Put)

Response resp = Put("http://httpbin.org/put", "C:\\Users\\jack\\Desktop\\key.txt");
cout << resp.status << endl;
cout << resp.GetText() << endl;

map<string, string> header;
string cookie = "BAIDUID=B066E871294A61BE394DE24FFA475653:FG=1; BIDUPSID=B066E871294A61BE9EF72E101F79BF87; PSTM=1578882286;";
Response resp = Get("https://pan.baidu.com/disk/home",header,cookie);
cout << resp.GetText() << endl;

设置代理(Config Http Proxy)

map<string, string> options;
map<string, string> header;
options["proxy"] = "http=http://122.51.49.88:8888";
try{
Response resp = Get("http://pv.sohu.com/cityjson",header , "", options);
cout << resp.status << endl;
}
catch (const char *msg){
cout << msg << endl;
}

自定义Http Header(customize Http Header)

map<string, string> header;
map<string, string> options;
options["timeout"] = "5000";
header["name"] = "cpp";
header["age"] = "14"; header["User-Agent"] = "Cpp Brower"
Response resp = Get("http://httpbin.org/headers",header);
cout << resp.status << endl;
cout << resp.GetText() << endl;

上传文件(Upload File)

map<string, string> header;
map<string, string> data;
map<string, string> files;
data["key"] = "something";
data["submit"] = "Submit"; //form表单的其他要上传的数据,如账号密码。
files["file"] = "C:\stdafx.h"; //form表单中的文件字段。
Response resp = Post(url,data,files);
cout << resp.status << endl;
cout << resp.GetText() << endl;

Product Compatible and additional computed target framework versions.
native native is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.5 1,344 6/19/2020
0.0.4 553 6/18/2020
0.0.3 481 6/18/2020
0.0.2 663 5/27/2020
0.0.1 472 5/18/2020

Release of Requests  libraries.