赞
踩
一、首先是我们需要三个参数
{
“ProductKey”: “a1V4moLALdW”, //阿里云颁发的产品唯一标识,11位长度的英文数字随机组合
“DeviceName”: “esp8266”, //阿里云颁发的产品唯一标识,11位长度的英文数字随机组合
“DeviceSecret”: “8823c5d655b364dad82eebfdef366fbe” //设备密钥,与DeviceName成对出现,可用于一机一密的认证方案
}
//阿里云域名
#define Broker Address PRODUCT_KEY”.iot-as-mqtt.cn-shanghai.aliyuncs.com”
#define HOST_NAME PRODUCT_KEY”.iot-as-mqtt.cn-shanghai.aliyuncs.com”
//阿里云域名端口,固定1883
#define HOST_PORT 1883
//客户端ID
#define CLIENT_ID DEVICE_NAME”|securemode=3,signmethod=hmacsha1,timestamp=789|”
//客户端用户名
#define User Name DEVICE_NAME”&”PRODUCT_KEY
//客户端登录password通过hmac_sha1算法得到,大小写不敏感
//#define Password “AA6A749E740A3019D58090FF3ADC57B9DB4B380E”
Password通过软件计算生成
hmacsha1在线生成网址
https://1024tools.com/hmac
需要用到两个参数
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。