C++调动后端接口,给后端发送请求时。
sudo apt-get install curl
sudo apt-get install libcurl4-openssl-dev
#include<curl/curl.h>
编译程序时,出现 'curl_easy_init' was not declared in this scope 问题时,说明虽然系统上有了curl的包,但是程序没有识别,要在编译时加上参数
-L/usr/lib/x86_64-linux-gnu -lcurl
(完)