Code Monkey home page Code Monkey logo

Comments (6)

ocni-dtu avatar ocni-dtu commented on September 21, 2024 3

Thanks for the help @JonasKs!
So it turns out that I fucked up 🤦
The mistake was in the React code. Anyways I'm just going to explain below for anyone in the future.

// main.tsx

import { MsalProvider } from "@azure/msal-react";
import { msalInstance } from "./features/utils/aad";

ReactDOM.render(
  <React.StrictMode>
    <MsalProvider instance={msalInstance}>
      <App />
    </MsalProvider>
  </React.StrictMode>,
  document.getElementById("root")
);
// features/utils/aad.tsx

import {
  Configuration,
  RedirectRequest,
  PublicClientApplication,
  EventMessage,
  EventType,
  AuthenticationResult,
} from "@azure/msal-browser";

export const msalConfig: Configuration = {
  auth: {
    clientId: import.meta.env.VITE_AAD_CLIENT_ID as string,
    authority: `https://login.microsoftonline.com/${import.meta.env.VITE_AAD_TENANT_ID}`,
    redirectUri: "http://localhost:3000/login",
  },
  cache: {
    cacheLocation: "sessionStorage", 
    storeAuthStateInCookie: false,
  },
};

export const msalInstance = new PublicClientApplication(msalConfig);

msalInstance.addEventCallback((event: EventMessage) => {
  if (event.eventType === EventType.LOGIN_SUCCESS && event.payload) {
    const payload = event.payload as AuthenticationResult;
    const account = payload.account;
    msalInstance.setActiveAccount(account);
  }
});

// MSAL.js v2 exposes several account APIs, logic to determine which account to use is the responsibility of the developer
const account = msalInstance.getAllAccounts()[0];

export const accessTokenRequest = {
  scopes: [`api://${import.meta.env.VITE_AAD_APP_CLIENT_ID}/user_impersonation`],
  account: account,
};

The issue was that I had my accessTokenRequest without the id of the backend app registration

export const accessTokenRequest = {
  scopes: [`user_impersonation`],
  account: account,
};

from fastapi-azure-auth.

JonasKs avatar JonasKs commented on September 21, 2024

Can you de-code your token at https://jwt.io and show me how it looks? If you're not comfortable posting that information online, you can send it to me at [email protected].

Also, your react frontend is set up exactly as the OpenAPI app registration?

from fastapi-azure-auth.

ocni-dtu avatar ocni-dtu commented on September 21, 2024

Sure here is a link to the token(Removed by @JonasKs)

It says it cannot verify the signature.

Yes, the Azure setup should be the same:
Screenshot from 2022-04-25 10-59-52
Screenshot from 2022-04-25 10-57-51

from fastapi-azure-auth.

JonasKs avatar JonasKs commented on September 21, 2024

Your tokens aud(audience) is for Microsoft Graph and not your backend application. So audience verification fails.

Can you provide some react code so I can see how it has been configured? Could it be that it fetches multiple tokens(maybe silently) and you’re using the wrong one?

If not, could you click login and copy the Azure URL you’re signing in from/redirected to?

from fastapi-azure-auth.

JonasKs avatar JonasKs commented on September 21, 2024

On a side note: I'm not a frontend developer, but could it be an idea to switch to @azure/msal-react instead of using @azure/msal-browser?

from fastapi-azure-auth.

JonasKs avatar JonasKs commented on September 21, 2024

Glad you figured it out, and thanks for providing an example for future reference.

Have a good week 😊

from fastapi-azure-auth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.