我必须将我的AngularJS SPA与Azure AD集成。有一个示例应用程序(https://github.com/Azure-Samples/active-directory-angularjs-singlepageapp)。该示例工作正常,我使用该示例应用程序登录时没有问题。
但是样本使用了一些非常旧版本的jquery(1.11.1)和angular(1.2.25)。我使用jquery 3.1.1和angular 1.6.4。
当我将这些版本与示例应用程序一起使用时,我无法登录。
我正在重定向到login.microsoftonline.com,回复时使用302授权回复一个非常长的查询字符串,页面卡在那里,意味着在浏览器地址栏中保留了那个长网址。
如果我将脚本更改为旧版本,请刷新页面并重试我已登录。
我没有登录。
有关如何使其发挥作用的任何想法?
这是我的控制器
"use strict";
angular.module("todoApp", ["ngRoute","AdalAngular"])
.config(["$routeProvider", "$httpProvider", "adalAuthenticationServiceProvider", function ($routeProvider, $httpProvider, adalProvider) {
$routeProvider.when("/Home", {
controller: "homeCtrl",
templateUrl: "/App/Views/Home.html"
}).when("/TodoList", {
controller: "todoListCtrl",
templateUrl: "/App/Views/TodoList.html",
requireADLogin: true
}).when("/UserData", {
controller: "userDataCtrl",
templateUrl: "/App/Views/UserData.html"
}).otherwise({ redirectTo: "/Home" });
adalProvider.init(
{
instance: "https://login.microsoftonline.com/",
tenant: "",
clientId: "",
extraQueryParameter: "nux=1",
//cacheLocation: 'localStorage', // enable this for IE, as sessionStorage does not work for localhost.
},
$httpProvider
);
}]);
答案 0 :(得分:0)
请按照tomidix提到的建议,解决此问题。以下是供您参考的代码:
app.js
'use strict';
angular.module('todoApp', ['ngRoute','AdalAngular'])
.config(['$routeProvider', '$httpProvider', 'adalAuthenticationServiceProvider', '$locationProvider', function ($routeProvider, $httpProvider, adalProvider, $locationProvider) {
$routeProvider.when("/Home", {
controller: "homeCtrl",
templateUrl: "/App/Views/Home.html",
}).when("/TodoList", {
controller: "todoListCtrl",
templateUrl: "/App/Views/TodoList.html",
requireADLogin: true,
}).when("/UserData", {
controller: "userDataCtrl",
templateUrl: "/App/Views/UserData.html",
}).otherwise({ redirectTo: "/Home" });
adalProvider.init(
{
instance: 'https://login.microsoftonline.com/',
tenant: 'xxxx.onmicrosoft.com',
clientId: '',
extraQueryParameter: 'nux=1',
//cacheLocation: 'localStorage', // enable this for IE, as sessionStorage does not work for localhost.
},
$httpProvider
);
$locationProvider.html5Mode(false).hashPrefix('');
}]);