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)
        })
4

1 回答 1

0

msal 0.1.3可以导入 - 见https://github.com/sunilbandla/vue-msal-sample

于 2018-01-01T20:28:50.100 回答