无法登录智能应用工具包示例

时间:2015-07-14 05:25:56

标签: cumulocity

我按照以下链接测试智能应用工具包, https://www.cumulocity.com/guides/web/smart-toolkit/

我可以到达" 5。创建登录界面"并查看在后台运行GRUNT SERVER的登录页面。但是,我没有运气登录我的帐户。我从telstra-iot.com获得了我的试用帐户,我的主页是m2mone.telstra-iot.com。

我改变了#34; demos.cumulocity.com"在hello-core-api / js / app.js到" www.telstra-iot.com"但仍然没有运气。

我放入租户:m2mone,用户名:admin,密码:xxxxxx。我错过了什么吗?

2 个答案:

答案 0 :(得分:0)

默认情况下,grunt服务器任务会导致developer.cumulocity.com,这对您不起作用,因为您使用的是其他安装(telstra-iot)。

您可以在执行grunt任务时定义主机

grunt server --host=m2mone.telstra-iot.com

答案 1 :(得分:0)

您需要将https://m2mone.telstra-iot.com/用作baseUrl

c8yCumulocityProvider.setBaseUrl('https://m2mone.telstra-iot.com/');

您也可以在那里设置租户,这样您就不需要在登录页面填写租户:

c8yCumulocityProvider.setTenant('m2mone');

现在您可以在登录页面中将租户字段留空,如果需要,您可以完全从登录页面中删除租户字段。