当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript thing-if-sdk.ThingIFAPI类代码示例

本文整理汇总了TypeScript中thing-if-sdk.ThingIFAPI的典型用法代码示例。如果您正苦于以下问题:TypeScript ThingIFAPI类的具体用法?TypeScript ThingIFAPI怎么用?TypeScript ThingIFAPI使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了ThingIFAPI类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

 it ("Shows how to Onboarding", function(done) {
     const onboardReq = new ThingIF.OnboardWithVendorThingIDRequest("vendorThingID", "password");
     api.onboardWithVendorThingID(onboardReq).then((result:ThingIF.OnboardingResult) => {
         console.log(result.accessToken);
         console.log(result.mqttEndPoint);
         console.log(result.thingID);
         const mqttEndPoint = result.mqttEndPoint;
         const host:string = mqttEndPoint.host;
         const topic:string = mqttEndPoint.mqttTopic;
         const username:string = mqttEndPoint.username;
         const password:string = mqttEndPoint.password;
         const port:number = mqttEndPoint.portTCP;
         const clientID:string = mqttEndPoint.mqttTopic;
         // Connect to MQTT with mqttEndPoint information.
     }).catch((error:Error) => {
         if (error instanceof ThingIF.HttpRequestError) {
             // REST Api returns error response.
             console.log(error.status);
         } else if (error.name == ThingIF.Errors.IlllegalStateError) {
             // Error caused by illegal state.
         } else if (error.name == ThingIF.Errors.ArgumentError) {
             // Error caused by invalid argument.
         } else {
             // Other error. Unexpected error happens.
         }
         done(error);
     });
 });
开发者ID:satoshikumano,项目名称:thing-if-js-usage-test,代码行数:28,代码来源:thing-if-test.ts


注:本文中的thing-if-sdk.ThingIFAPI类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。