1

我正在开发一个 React 应用程序,并且正在使用 @azure/msal-react 库进行身份验证。

这很好用,但后来我意识到我很想使用@microsoft/mgt-react 库中的人员选择器小部件。

有什么方法可以将现有的 @azure/msal-react / @azure/msal-browser 库连接到 MGT 库?

或者我是否必须重构我的代码才能使用 MGT 风格的身份验证方法?

如果是这种情况,我认为我会构建自己的 People Picker 组件,但我想我会看看是否有可能。

4

2 回答 2

1

如果您已经有办法获取访问令牌,则可以将 MGT 与SimpleProvider一起使用。

import {Providers, SimpleProvider, ProviderState} from '@microsoft/mgt-element';

Providers.globalProvider = new SimpleProvider((scopes: string[]) => {
  // return a promise with accessToken
});

// set state to signal to all components to start calling graph
Providers.globalProvider.setState(ProviderState.SignedIn)
于 2021-06-18T04:56:09.327 回答
0

我的解决方案是@azure/msal-browser在 Microsoft Graph Toolkit ( @microsoft/mgt-element) 和@azure/msal-react库中使用相同的实例,如下所示:

// MSAL React
import { MsalProvider as MsalReactProvider } from "@azure/msal-react";
import { Configuration, PublicClientApplication } from "@azure/msal-browser";
// Microsoft Graph Toolkit
import { Providers as MGT_Providers } from '@microsoft/mgt-element';
import { Msal2Provider as MGT_Msal2Provider } from '@microsoft/mgt-msal2-provider';

// Your app
import App from './App';

// MSAL configuration
const configuration: Configuration = {
    ... MSAL Browser config
};

// Instantiate MSAL-Browser
const pca = new PublicClientApplication(configuration);
// instantiate the global provider for MGT
MGT_Providers.globalProvider = new MGT_Msal2Provider({ publicClientApplication: pca });

ReactDOM.render(
  <MsalReactProvider instance={pca}>
    <App />
  </MsalReactProvider>  document.getElementById('root')
);

并在应用程序组件中进行一些引导以保持日志状态同步:

import { useMsal, useIsAuthenticated } from "@azure/msal-react";
import { Providers as MGT_Providers, ProviderState } from '@microsoft/mgt-element';

export function App() {

  const isAuthenticated = useIsAuthenticated();
  const { inProgress } = useMsal();
  useEffect(() => {
    console.log("isAuthenticated, inProgress: ", [isAuthenticated, inProgress], [typeof isAuthenticated, typeof inProgress])
    MGT_Providers.globalProvider.setState(inProgress !== "none" ? ProviderState.Loading : (isAuthenticated ? ProviderState.SignedIn : ProviderState.SignedOut))
  }, [isAuthenticated, inProgress])

  ... 

}
于 2022-03-03T23:08:32.697 回答