Reputation: 11
I have got a scenario where I need to implement the authentication and authorization using Azure AD b2c through MSAL, where I'm confused should I use MSAL for nodejs or the react js one. I have gone through official msal-nodejs documentation however its kind of unclear. It would be great if any one can help me on how to achieve this or if you have any example of msal with MERN stack app that would be great!
Upvotes: 1
Views: 976
Reputation: 586
Check the below MERN example: https://github.com/Azure-Samples/ms-identity-javascript-react-tutorial/tree/main/3-Authorization-II/2-call-api-b2c
Essentially:
Upvotes: 2