作者:平凡洗护店 | 来源:互联网 | 2023-06-16 14:44
1)阿里云物联网1)首先在VS2019创建控制台.net core应用程序 2)在依赖项中添加Mqtt和CZGL_AliloTClient两个包 3)在progress.cs中编写连接秘钥在这里插入代
1)阿里云物联网
1)首先在VS2019创建控制台.net core应用程序
2)在依赖项中添加Mqtt和CZGL_AliloTClient两个包
3)在progress.cs中编写连接秘钥
在这里插入代 static void Main(string[] args)
{
client = new AliIoTClientJson(new DeviceOptions
{
ProductKey = "a1Ga*****",
DeviceName = "te***8",
DeviceSecret = "bce138fdf854dac********",
RegionId = "cn-shanghai"
});
string[] topics = new string[] { client.CombineHeadTopic("get") };
client.UseDefaultEventHandler();
client.ConnectIoT(topics, null, 60);
Console.ReadKey();
}码片
测试结果如下: