热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

C++使用libcurl做HttpClient

当使用C++做HTTP客户端时,目前通用的做法就是使用libcurl。其官方网站的地址是http:curl.haxx.se,该网站主要提供了Curl和libcurl。Curl是命令

    当使用C++做HTTP客户端时,目前通用的做法就是使用libcurl。其官方网站的地址是http://curl.haxx.se/,该网站主要提供了Curl和libcurl。Curl是命令行工具,用于完成FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE 以及 LDAP的命令的请求及接收回馈。libcurl提供给开发者,用于使用C++跨平台的开发各种网络协议的请求及响应。里面的文档非常齐全,不过都是英文的。

    本文提供最简单的demo使用libcurl开发HttpClient。主要包括同步的HTTP GET、HTTP POST、HTTPS GET、HTTPS POST。

    下载libcurl包,如果使用Linux平台,建议下载源文件编译;如果使用Windows平台,建议下载Win32 - MSVC,下载地址是:http://curl.haxx.se/download.html

#ifndef __HTTP_CURL_H__
#define __HTTP_CURL_H__

#include

class CHttpClient
{
public:
CHttpClient(void);
~CHttpClient(void);

public:
/**
* @brief HTTP POST请求
* @param strUrl 输入参数,请求的Url地址,如:http://www.baidu.com
* @param strPost 输入参数,使用如下格式para1=val1¶2=val2&…
* @param strResponse 输出参数,返回的内容
* @return 返回是否Post成功
*/
int Post(const std::string & strUrl, const std::string & strPost, std::string & strResponse);

/**
* @brief HTTP GET请求
* @param strUrl 输入参数,请求的Url地址,如:http://www.baidu.com
* @param strResponse 输出参数,返回的内容
* @return 返回是否Post成功
*/
int Get(const std::string & strUrl, std::string & strResponse);

/**
* @brief HTTPS POST请求,无证书版本
* @param strUrl 输入参数,请求的Url地址,如:https://www.alipay.com
* @param strPost 输入参数,使用如下格式para1=val1¶2=val2&…
* @param strResponse 输出参数,返回的内容
* @param pCaPath 输入参数,为CA证书的路径.如果输入为NULL,则不验证服务器端证书的有效性.
* @return 返回是否Post成功
*/
int Posts(const std::string & strUrl, const std::string & strPost, std::string & strResponse, const char * pCaPath = NULL);

/**
* @brief HTTPS GET请求,无证书版本
* @param strUrl 输入参数,请求的Url地址,如:https://www.alipay.com
* @param strResponse 输出参数,返回的内容
* @param pCaPath 输入参数,为CA证书的路径.如果输入为NULL,则不验证服务器端证书的有效性.
* @return 返回是否Post成功
*/
int Gets(const std::string & strUrl, std::string & strResponse, const char * pCaPath = NULL);

public:
void SetDebug(bool bDebug);

private:
bool m_bDebug;
};

#endif

#include "httpclient.h"#include "curl/curl.h"#include CHttpClient::CHttpClient(void) : m_bDebug(false){}CHttpClient::~CHttpClient(void){}static int OnDebug(CURL *, curl_infotype itype, char * pData, size_t size, void *){	if(itype == CURLINFO_TEXT)	{		//printf("[TEXT]%s\n", pData);	}	else if(itype == CURLINFO_HEADER_IN)	{		printf("[HEADER_IN]%s\n", pData);	}	else if(itype == CURLINFO_HEADER_OUT)	{		printf("[HEADER_OUT]%s\n", pData);	}	else if(itype == CURLINFO_DATA_IN)	{		printf("[DATA_IN]%s\n", pData);	}	else if(itype == CURLINFO_DATA_OUT)	{		printf("[DATA_OUT]%s\n", pData);	}	return 0;}static size_t OnWriteData(void* buffer, size_t size, size_t nmemb, void* lpVoid){	std::string* str = dynamic_cast((std::string *)lpVoid);	if( NULL == str || NULL == buffer )	{		return -1;	}    char* pData = (char*)buffer;    str->append(pData, size * nmemb);	return nmemb;}int CHttpClient::Post(const std::string & strUrl, const std::string & strPost, std::string & strResponse){	CURLcode res;	CURL* curl = curl_easy_init();	if(NULL == curl)	{		return CURLE_FAILED_INIT;	}	if(m_bDebug)	{		curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);		curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, OnDebug);	}	curl_easy_setopt(curl, CURLOPT_URL, strUrl.c_str());	curl_easy_setopt(curl, CURLOPT_POST, 1);	curl_easy_setopt(curl, CURLOPT_POSTFIELDS, strPost.c_str());	curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL);	curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, OnWriteData);	curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&strResponse);	curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);	curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3);	curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3);	res = curl_easy_perform(curl);	curl_easy_cleanup(curl);	return res;}int CHttpClient::Get(const std::string & strUrl, std::string & strResponse){	CURLcode res;	CURL* curl = curl_easy_init();	if(NULL == curl)	{		return CURLE_FAILED_INIT;	}	if(m_bDebug)	{		curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);		curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, OnDebug);	}
	curl_easy_setopt(curl, CURLOPT_URL, strUrl.c_str());	curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL);	curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, OnWriteData);	curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&strResponse);	/**	* 当多个线程都使用超时处理的时候,同时主线程中有sleep或是wait等操作。	* 如果不设置这个选项,libcurl将会发信号打断这个wait从而导致程序退出。	*/	curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);	curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3);	curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3);	res = curl_easy_perform(curl);	curl_easy_cleanup(curl);	return res;}int CHttpClient::Posts(const std::string & strUrl, const std::string & strPost, std::string & strResponse, const char * pCaPath){	CURLcode res;	CURL* curl = curl_easy_init();	if(NULL == curl)	{		return CURLE_FAILED_INIT;	}	if(m_bDebug)	{		curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);		curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, OnDebug);	}	curl_easy_setopt(curl, CURLOPT_URL, strUrl.c_str());	curl_easy_setopt(curl, CURLOPT_POST, 1);	curl_easy_setopt(curl, CURLOPT_POSTFIELDS, strPost.c_str());	curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL);	curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, OnWriteData);	curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&strResponse);	curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);	if(NULL == pCaPath)	{		curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false);		curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, false);	}	else	{		//缺省情况就是PEM,所以无需设置,另外支持DER		//curl_easy_setopt(curl,CURLOPT_SSLCERTTYPE,"PEM");		curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, true);		curl_easy_setopt(curl, CURLOPT_CAINFO, pCaPath);	}	curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3);	curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3);	res = curl_easy_perform(curl);	curl_easy_cleanup(curl);	return res;}int CHttpClient::Gets(const std::string & strUrl, std::string & strResponse, const char * pCaPath){	CURLcode res;	CURL* curl = curl_easy_init();	if(NULL == curl)	{		return CURLE_FAILED_INIT;	}	if(m_bDebug)	{		curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);		curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, OnDebug);	}	curl_easy_setopt(curl, CURLOPT_URL, strUrl.c_str());	curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL);	curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, OnWriteData);	curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&strResponse);	curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);	if(NULL == pCaPath)	{		curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false);		curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, false);	}	else	{		curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, true);		curl_easy_setopt(curl, CURLOPT_CAINFO, pCaPath);	}	curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3);	curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3);	res = curl_easy_perform(curl);	curl_easy_cleanup(curl);	return res;}///////////////////////////////////////////////////////////////////////////////////////////////void CHttpClient::SetDebug(bool bDebug){	m_bDebug = bDebug;}
 
 



推荐阅读
  • 在Linux系统上构建Web服务器的详细步骤
    本文详细介绍了如何在Linux系统上搭建Web服务器的过程,包括安装Apache、PHP和MySQL等关键组件,以及遇到的一些常见问题及其解决方案。 ... [详细]
  • Symfony是一个功能强大的PHP框架,以其依赖注入(DI)特性著称。许多流行的PHP框架如Drupal和Laravel的核心组件都基于Symfony构建。本文将详细介绍Symfony的安装方法及其基本使用。 ... [详细]
  • PyCharm下载与安装指南
    本文详细介绍如何从官方渠道下载并安装PyCharm集成开发环境(IDE),涵盖Windows、macOS和Linux系统,同时提供详细的安装步骤及配置建议。 ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • CentOS 7.6环境下Prometheus与Grafana的集成部署指南
    本文旨在提供一套详细的步骤,指导读者如何在CentOS 7.6操作系统上成功安装和配置Prometheus 2.17.1及Grafana 6.7.2-1,实现高效的数据监控与可视化。 ... [详细]
  • 本文将详细介绍如何在ThinkPHP6框架中实现多数据库的部署,包括读写分离的策略,以及如何通过负载均衡和MySQL同步技术优化数据库性能。 ... [详细]
  • 了解如何快速搭建属于自己的个人博客,无需编程基础,适合Mac和Windows用户。通过本文,您将学会使用GitHub Pages和Hexo构建一个完全自主的在线空间。 ... [详细]
  • Docker的安全基准
    nsitionalENhttp:www.w3.orgTRxhtml1DTDxhtml1-transitional.dtd ... [详细]
  • 探讨如何高效使用FastJSON进行JSON数据解析,特别是从复杂嵌套结构中提取特定字段值的方法。 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • RedHat 系统下配置国内 YUM 源以替代官方收费源的方法
    本文详细介绍如何在 RedHat Linux 中安装并配置 YUM 包管理器,并通过使用国内镜像源来解决因未购买官方服务而导致的更新源限制问题。 ... [详细]
  • 本文提供了在 Kali Linux 2020.01 x64 版本上安装 Docker 的详细步骤,包括环境准备、使用清华大学镜像源、配置 APT 仓库以及安装过程中的常见问题处理。 ... [详细]
  • 从 Windows 转向 Mac 的开发者指南:必备技巧与工具
    本文旨在帮助从 Windows 转向 Mac 的开发者们,提供一系列实用的技巧和工具,确保过渡过程顺畅。 ... [详细]
  • 超文本传输协议HTTP也许是当今互联网上使用的最重要的协议了。尽管java.net包提供了基本通过HTTP访问资源的功能,但它没有提供全面的灵活性和其它很多应用程序需要的功能。HttpClient就 ... [详细]
author-avatar
一个人的生活啦
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有