2

如何使用 DPS 将设备预配到 IoT Central? 文档说,有一个高级选项可用于将设备直接配置到 IoT 中心。但是当我签入 DPS 应用程序时,没有链接到 IOT 控制的选项。

我是物联网开发的新手。

4

2 回答 2

1

Azure IoT Central 在创建应用程序时预配设备预配服务 (DPS)。预配设备所需的详细信息都可以从 Azure IoT Central 应用程序中检索。根据您的用例,按照以下说明将设备连接到 IoT Central:

于 2018-11-26T19:31:32.350 回答
1

您可以查看以下示例 - https://github.com/Azure/iotc-device-bridge/blob/master/IoTCIntegration/lib/engine.js第 119 行

const sasToken = 等待 getRegistrationSasToken(context, deviceId);

const registrationOptions = {
    url: `https://${registrationHost}/${context.idScope}/registrations/${deviceId}/register?api-version=${registrationApiVersion}`,
    method: 'PUT',
    json: true,
    headers: { Authorization: sasToken },
    body: { registrationId: deviceId }
};
于 2019-03-07T23:00:37.873 回答