0

我想获取连接字符串的详细信息,根据微软文档,我在 Azure CLI 2.0 中运行了以下命令。不幸的是,它抛出以下错误。我在谷歌上冲浪了很多,但我无法得到苹果的答案。请有人可以帮我解决这个问题。提前致谢。

我的命令:

az iot hub device-identity show-connection-string --device-id testDevice 

错误:

az iot hub: 'device-identity' is not in the 'az iot hub' command group. See 'az iot hub --help'.
4

2 回答 2

4

要使用此命令az iot hub device-identity show-connection-string --device-id testDevice,您需要为 Azure CLI 安装Microsoft Azure IoT Extension

您可以使用以下命令安装它:

az extension add --name azure-cli-iot-ext

更多依赖于 Azure IoT 扩展的命令在这里

于 2018-07-27T06:47:01.623 回答
0

对于您的问题,答案就像错误说没有设备身份在az iot hub. 如果要获取连接字符串,可以使用az iot hub show-connection-stringaz iot device show-connection-string

于 2018-07-25T08:28:11.277 回答