使用C++编写阿里云平台短信验证码demo (三)——阿里短信验证码请求字符串

1、首次开发阿里云平台短信验证码demo,建议仔细阅读相关参数,请求字符串生成规则,文章链接
https://help.aliyun.com/document_detail/101343.html?spm=a2c4g.11186623.2.10.5bf07535Jjz02z

文章参考了
阿里云短信验证码Javademo
阿里云C++短信发送程序:https://blog.csdn.net/u012023606/article/details/80633042
阿里云短信服务接口的c++实现:https://blog.csdn.net/py8105/article/details/80089001
C/C++ Java HmacSha1加密算法 Base64处理 URLencode: https://www.cnblogs.com/Bachelor/archive/2013/01/22/2870180.html

2、前面一、二篇博客中我们已经配置好了相关开发环境,所以就直接描述相关代码,
2.1、先看主程序中代码


`#include "pch.h"
#include "HMAC_SHA1.h"
#include "urlcodeing.h"
#include "SendMessage.h"
#include 

你可能感兴趣的:(程序代码,get请求)