问题标签 [cloudrail]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
.net - 使用 cloudrail AdvancedRequest 获取异常
我正在尝试在我的 .NET 项目中使用高级请求,但遇到异常
System.SystemException: 'AdvancedRequestSupporter 函数中的 ServiceCode 错误:advancedRequest 在 11: http.requestCall $L1 $L0 '</p>
InvalidCastException:无法将“System.Collections.Generic.Dictionary2[System.String,System.String]”类型的对象转换为“System.Collections.Generic.Dictionary2[System.String,System.Object]”类型。
代码:AdvancedRequestSpecification req = new AdvancedRequestSpecification("/pubapi/v1/properties/namespace"); req.SetMethod(“POST”); 字典正文 = new Dictionary(); 身体[“测试”] = 55;req.SetBodyStringifyJson(body) ;
即使我没有设置正文或标题,我也会收到此异常
所以像 AdvancedRequestSpecification req = new AdvancedRequestSpecification("/pubapi/v1/properties/namespace"); req.SetMethod(“POST”); AdvancedRequestResponse res = AdvancedRequest(req);
谁能帮忙?我忘了提到我尝试过使用 Box 和 egynte
azure - CloudRail OneDriveBusiness 只认证一次
我们已经使用 CloudRail 实现了一些与云提供商的连接。
对于其中大多数(Google Drive、Box、Dropbox 和 OneDrive),我们被要求提供用户名和密码,然后每次连接时都允许访问,而无需使用存储的令牌。但是,如果我们使用 OneDriveBusiness,我们只会被询问一次,然后每次都会自动进行身份验证。
我需要清除浏览器上的历史记录以显示身份验证屏幕。
这是 OneDrive For Business/Azure 的预期行为吗?
我了解 Azure 会存储您已允许用户访问,但有没有办法在不清除浏览器的情况下以其他用户身份登录?
提前致谢。
azure-sql-database - 在 Azure SQL 数据库中存储 D2C 消息
我正在尝试将从 Cloudrail.Box 接收的传感器读数作为 JSON 有效负载存储到 Azure SQL 数据库中。我当前使用的边缘函数根据设定的频率分批输出消息(如下所示)。{ “Temp_V_Raw”:0.789,“Pressure_V_Raw”:0.006,“Temp_C”:23.67,“Pressure_Bar”:1.8450718792014,“时间戳”:1617990070392,“日期”:“2021 年 4 月 9 日星期五 19:41:10 GMT+0200 )" }
如何将其以表格格式存储在 Azure SQL 数据库中?