C++ client for making HTTP/REST requests https://github.com/mrtazz/restclient-cpp 開啟msys2

pacman -S mingw-w64-x86_64-curl
cd workspace_msys2 
git clone https://github.com/mrtazz/restclient-cpp.git

cd restclient-cpp/  
./autogen.sh

./configure

make install

結束安裝

建立測試資料夾

mkdir workspace_test

進入資料夾

cd workspace_test

建立專案資料夾

mkdir rest_example
cd rest_example

第二步

建立文件

vim rest_example.cpp

程式碼如下圖所示

:wq         \\存檔離開

編譯程式

g++ rest_example.cpp -o rest_example -lrestclient-cpp -lcurl

執行程式

./rest_example.exe

第三步

git clone https://github.com/Tencent/rapidjson.git
g++ -I rapidjson/include rest_example.cpp -o rest_example -lrestclient-cpp -lcurl
./rest_example.exe