API不会通过使用MSAL从SPA传递的令牌对AAD进行身份验证

时间:2017-07-24 17:14:29

标签: node.js azure authentication msal

我正在尝试调整引用herehere的示例B2C代码,以对抗我们的组织AAD。

我有一个SPA应用程序,通过MSAL成功通过AAD进行身份验证并接收令牌。 SPA应用程序可以使用令牌从MS Graph API中提取数据 - 因此我确定令牌有效。

SPA目前在本地运行@ localhost:9000。

我有第二个应用程序是运行@ localhost:3000的Nodejs API。 SPA应用程序调用API,传递与GraphAPI相同的令牌。 API应用程序应该使用该令牌来验证用户并提供对API的访问权限;但是,我只回来了401 - 未经授权。

(我正在使用Aurelia作为我的客户端代码。使用Aurelia的HTTP客户端发出HTTP请求。)

以下是用于调用API的SPA代码:

//Not entirely sure what to use as the scope here!!  API is registered to allow user.read Graph API scope.
this.config.msClient.acquireTokenSilent(["user.read"]).then(token => {
   console.log("Token acquired silently.");
   this.makeAPICall(token);
}, error => { ... }
);

makeAPICall(token) {
   this.http.configure(config => {
     config
       .withBaseUrl('http://localhost:3000/')
       .withDefaults({
           headers: {
               'Authorization': 'Bearer ' + token
           }
      }

      this.http.fetch("user/0")
       .then(response => {
          debugger;  //response is 401 Unauthenticated at this point
       }, error => { ... });

}

我已在apps.dev.microsoft.com上为我的API注册了一个应用程序。这是我的服务器端(API)Nodejs代码:

const express = require("express")
const port = 3000
const passport = require("passport")
var BearerStrategy = require("passport-azure-ad").BearerStrategy;

var userList = [
    {id: 1, first: "Mickey", last: "Mouse", age: 95},
    {id: 2, first: "Donald", last: "Duck", age: 85},
    {id: 3, first: "Pluto", last: "leDog", age: 70}
]

var options = {
    identityMetadata: "https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration",
    clientID: "xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxx",  //My registered App Id
    passReqToCallback: false,
    validateIssuer: true,
    issuer: "xxxxxxx"  //Our tenant name
};

var strategy = new BearerStrategy(options, (token, done) => {
    console.log(token);
    done(null,{}, {scope: '*'});
})


const app = express()
app.use(passport.initialize())
passport.use(strategy);

//Allow CORS
app.use((req, res, next) => {
    res.header("Access-Control-Allow-Origin","*");
    res.header("Access-Control-Allow-Headers","Authorization, Origin, X-Requested-With, Content-Type,Accept");
    next();
})

app.get("/",(request, response) => {  //Unauthenticated -- always works
    response.send("Hello World!")
})

app.get("/user/:id",passport.authenticate('oauth-bearer',{session: false }),
  (request, response) => {
    //Never seem to get here (when debugging) as authenticate always fails
    let id = request.params["id"];
    let user = userList[id];
    if(user) response.json(user);
    else response.send("No user found")
})

app.listen(port, () => {
    console.log("Listening on port " + port)
})

我确信我只是误解了这一切是如何运作的,但我会对我需要改变以使其发挥作用有所了解。

2 个答案:

答案 0 :(得分:1)

代币就像银行支票:它们只能由他们为其编写的人进行缓存。为MS Graph发布的令牌将具有Microsoft Graph的受众,并且仅应由Microsoft Graph接受。接收该令牌的任何其他API X都应该拒绝它。打算调用X的客户端应该为X请求一个令牌,无论它是否已经有另一个服务的令牌(如Microsoft图形)。这里有一个使用ADAL JS实现的流程示例:https://azure.microsoft.com/en-us/resources/samples/active-directory-angularjs-singlepageapp-dotnet-webapi/ 此时,Azure AD v2(由MSAL使用)无法为自定义API发出访问令牌:该功能正在处理中,但我们没有ETA,因为它何时可以在生产中使用。在此之前,v2不支持此拓扑(因此MSAL JS)。遗憾!

答案 1 :(得分:0)

一年后,现在可以使用MSAL保护您的自定义API。在应用程序门户(https://apps.dev.microsoft.com)中,您可以创建应用程序,然后两次“添加平台”-一次用于Web应用程序SPA,另一次用于Web API。在网络API中,创建一个“范围”,例如“ api://e892d79e-03e7-4e5e-.../access_as_user”,然后将此范围传递到acquireTokenSilent调用中(而不是上面示例中的“ user.read”)。