adal-angular.js выдает всплывающее предупреждение при входе в систему - PullRequest
0 голосов
/ 17 октября 2018

при попытке перейти на страницу с атрибутом requireADLogin появляется следующее приглашение: enter image description here

    app.config(['$locationProvider', '$httpProvider', 'adalAuthenticationServiceProvider', '$routeProvider',
        function ($locationProvider, $httpProvider, adalAuthenticationServiceProvider, 

$routeProvider) {

        $routeProvider.
            when("/", {
                controller: "home",
                templateUrl: "/home.html"
            })
            .when("/test",
                {
                    controller: "test",
                    templateUrl: "/test.html",
                    requireADLogin: true
            });

        adalAuthenticationServiceProvider.init({
                instance: 'https://login.microsoftonline.com/',
            clientId: "me client guid yar",
                tenant: 'metenant.onmicrosoft.com',
            extraQueryParameter: 'nux=1',
                cacheLocation: 'localStorage',
                popUp:true
        },
            $httpProvider
        );
        $locationProvider.html5Mode(true).hashPrefix('!');

    }]);
...