我在React中创建了一个应用程序,并且我正在使用ADAL在Azure Active Directory中进行身份验证,因此每次有人访问我的网站时,他都必须登录。
我必须记录所有连接和断开连接(将POST请求发送到我的API)(当用户单击按钮注销时)。
身份验证由ADAL管理,所以我不知道将代码放在哪里来处理此问题...
import { AuthenticationContext, adalFetch, withAdalLogin } from 'react-adal';
export const adalConfig = {
instance: 'https://login.microsoftonline.com/',
tenant: '3v824f55-8461-4eab-9659-81cce12dfa04',
clientId: '33h87014-dff8-4406-84ce-2608f7173fe2',
endpoints: {
api: '14653b62-d8444-4e7a-9362-d7267et30a0d',
},
postLogoutRedirectUri: window.location.origin,
cacheLocation: 'localStorage',
callBack:callBackFunction
};
export const authContext = new AuthenticationContext(adalConfig);
export const adalApiFetch = (fetch, url, options) =>
adalFetch(authContext, adalConfig.endpoints.api, fetch, url, options);
export const withAdalLoginApi = withAdalLogin(authContext, adalConfig.endpoints.api);
function callBackFunction(errorDesc, token, error, tokenType)
{`enter code here`
alert("Problem wit`enter code here`h the connection ! ");
}
export const getToken = () => {
return authContext.getCachedToken(authContext.config.clientId);
};
这是我的adal.config文件(不是真实值)
有人有什么想法或曾经遇到过这个问题吗?
先谢谢您了:)
答案 0 :(得分:0)
我建议在adalconfig文件上创建一个包装类,该包装类封装 AuthenticationContext 并提供一个接口(诸如AuthentciationContext的GetToken,Logout和getter之类的方法)。
下面是带有AdalContext包装器类的 adalconfig文件代码。
import { AdalConfig, adalGetToken, AuthenticationContext } from 'react-adal';
// Endpoint URL
export const endpoint = 'https://graph.microsoft.com/';
// App Registration ID
const appId = '<App Registration ID>';
export const adalConfig: AdalConfig = {
cacheLocation: 'localStorage',
clientId: appId,
endpoints: {
api:endpoint
},
postLogoutRedirectUri: window.location.origin,
tenant: '<Tenant_Name>.onmicrosoft.com'
};
class AdalContext {
private authContext: AuthenticationContext;
constructor() {
this.authContext = new AuthenticationContext(adalConfig);
}
get AuthContext() {
return this.authContext;
}
public GetToken(): Promise<string | null> {
return adalGetToken(this.authContext, endpoint);
}
public LogOut() {
this.authContext.logOut();
}
}
const adalContext: AdalContext = new AdalContext();
export default adalContext;
在App.tsx或App.js文件中,创建一个封装了adalContext.LogOut()的公共onLogOut()方法,然后单击注销按钮,调用该公共onLogOut()方法,在注销用户之前,您可以登录详细信息。
下面是 App.tsx 文件代码:
import './App.css';
import * as React from 'react';
import logo from './logo.svg';
import { Web } from "@pnp/sp";
import adalContext, { endpoint } from './adalConfig';
interface IAppState {
webTitle: string
}
class App extends React.Component<{}, IAppState> {
constructor(props: any) {
super(props);
this.state = {webTitle: ''};
this.onLogOut = this.onLogOut.bind(this);
}
public componentWillMount() {
const web = new Web(endpoint);
web.select("Title").get().then(w => {
this.setState({
webTitle : w.Title
});
});
}
public onLogOut() {
// read details and log information before logging out
adalContext.LogOut();
}
public render() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h1 className="App-title">Welcome to React</h1>
</header>
<p className="App-intro">
To get started, edit <code>src/App.tsx</code> and save to reload.
</p>
<h1>
Title: {this.state.webTitle}
</h1>
<button onClick={this.onLogOut}>
Log out
</button>
</div>
);
}
}
export default App;
有关更多信息,您可以检查以下github链接:
我希望它能解决您的问题。