我正在使用Microsoft SDK进行注册。
他们建议在<head>
的{{1}}中使用以下代码行(有效):
index.html
我想在我的var ADAL = new AuthenticationContext({
instance: 'https://login.microsoftonline.com/',
tenant: 'common', //COMMON OR YOUR TENANT ID
clientId: '8605dbab-5f90-445c-b888-f27f3521e71e', //This is your client ID
redirectUri: 'http://localhost:4200', //This is your redirect URI
callback: userSignedIn,
popUp: true
});
文件中使用它,但是我不知道如何以“打字稿”的方式声明app.component.ts
。
例如new AuthenticationContext
:
app.component.ts
此外,我在想认证是一个类,而不是一个对象。我应该看“界面”吗?