如何正确导入和使用MSAL(js的Microsoft身份验证库)到javascript(非打字稿)反应单页面应用程序?

问题描述 投票:1回答:1

我试图将Msal导入reactjs应用程序。由于应用程序是由create-react-app创建的,因此我们在项目本身中没有webpack加载器。我无法获得Msal的参考。尝试:

var Msal = require('msal/out/msal.js');
var Msal = require('msal');
import Msal from 'msal';
import {Msal} from 'msal';

如果没有用于创建连接器的构造函数,则始终存在空的Msal。

var userAgentApplication = new **Msal**.UserAgentApplication("your_client_id", null, function (errorDes, token, error, tokenType) {
              // this callback is called after loginRedirect OR acquireTokenRedirect (not used for loginPopup/aquireTokenPopup)
        })
javascript reactjs msal
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.