是否有人使用服务器端呈现 Angular(Angular 通用)成功实施了 Azure AD 身份验证?
Has anyone successfully implemented Azure AD auth using Server Side Rendering Angular (Angular Universal)?
目前我们有一个应用正在使用 Angular Universal for Rendering。我们安装了 MSAL 身份验证,但我们使用身份验证会出现随机无限循环,尤其是新用户。
我们已经尝试捕获这些事件并进行处理,但它似乎不起作用。查看一些文档说,节点和服务器端应用程序仍然不支持 MSAL。
我无法使用 AUTH0。有没有人对如何在此类应用程序中完成对 azure ad 的授权有任何想法?
MSAL.js at the moment works only with single page applications. Support for Node applications is on the roadmap.
还有很多3rd party libraries that you can use for this. I would suggest using passport-azure-ad. You can see a sample application here。
目前我们有一个应用正在使用 Angular Universal for Rendering。我们安装了 MSAL 身份验证,但我们使用身份验证会出现随机无限循环,尤其是新用户。
我们已经尝试捕获这些事件并进行处理,但它似乎不起作用。查看一些文档说,节点和服务器端应用程序仍然不支持 MSAL。
我无法使用 AUTH0。有没有人对如何在此类应用程序中完成对 azure ad 的授权有任何想法?
MSAL.js at the moment works only with single page applications. Support for Node applications is on the roadmap.
还有很多3rd party libraries that you can use for this. I would suggest using passport-azure-ad. You can see a sample application here。