WSO2 EMM 2.1.1:仪表板分析中不存在设备

时间:2016-11-22 11:40:22

标签: wso2-emm

我目前正在安装WSO2 EMM

我设法为我的域名正确设置了它。

我设法在管理控制台EMM中将几台平板电脑和智能手机放在Android下。

https://i.stack.imgur.com/0Wlq0.png

在emm-analytics-dashboard控制台中,我看不到任何设备

https://i.stack.imgur.com/MZiU4.png

我使用的是WSO2 2.1.1版本

你能帮帮我吗?

对不起我的英语,因为我是法国人...我使用谷歌翻译

感谢您的回复。

1 个答案:

答案 0 :(得分:0)

您需要在portal / configs / designer.json

中设置授权配置
"authorization": {
        "activeMethod": "oauth",
        "methods": {
            "oauth": {
                "attributes": {
                    "idPServer": "https://localhost:9443/oauth2/token", (or https://<your_ip>:9443/oauth2/token)
                    "dynamicClientProperties": {
                        "callbackUrl": "https://localhost:9443/portal", (or https://<your_ip>:9443/portal)
                        "clientName": "portal",
                        "owner": "admin",
                        "applicationType": "JaggeryApp",
                        "grantType": "password refresh_token urn:ietf:params:oauth:grant-type:saml2-bearer",
                        "saasApp": false,
                        "dynamicClientRegistrationEndPoint": "https://localhost:9443/dynamic-client-web/register/", (or https://<your_ip>:9443/dynamic-client-web/register/)
                        "tokenScope": "Production"
                    }
                }
            }
        }
    }

当然,这会对你有所帮助。