适用于Azure IoT中心(SaaS)的IoT中心设备预配服务(DPS)

时间:2018-11-22 10:59:40

标签: azure-iot-hub azure-iot-central microsoft-iot-central

如何使用DPS将设备调配到IoT Central? Documentation说,有一个高级选项可用于直接将设备配置到IoT中心。 但是当我签入DPS应用程序时,没有选项可以链接到物联网。

我是物联网开发的新手。

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

您可以查看以下示例-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 }
};