我想向我的机器人添加B2C身份验证。
我正在尝试以这种方式使用MSAL:
var msal = new Msal.UserAgentApplication(applicationConfig.clientID, applicationConfig.authority, authCallback, {logger: logger, cacheLocation: 'sessionStorage', redirectUri: applicationConfig.webApi, postLogoutRedirectUri: 'something_to_skip_a_window_error', navigateToLoginRequestUrl: false
但是我收到一个与窗口有关的错误:
UserAgentReferenceError: window is not defined
at new Storage (...\node_modules\msal\src\Storage.ts:43:42)
at new UserAgentApplication (...\UserAgentApplication.ts:270
我也尝试过使用MSALX,但出现相同的错误。
欢迎任何帮助!