How to Integrate Azure Active Directory (Entra ID) in ASP.NET Core Web App?

Поділитися
Вставка
  • Опубліковано 11 січ 2025

КОМЕНТАРІ • 10

  • @eamonnd1420
    @eamonnd1420 Місяць тому +1

    Thank you for making this. The fact you explained the different ways to implement AD was very useful and I'm glad you left the debugging part in, helps us learn what to check for when it doesn't work.

  • @karthikeyanpalanisamy3664
    @karthikeyanpalanisamy3664 Місяць тому

    Good video

  • @srinivas1623
    @srinivas1623 3 місяці тому +1

    Thanks for the video could pls do AKS update with real time process

  • @orjisamuelobinna9764
    @orjisamuelobinna9764 Місяць тому

    Thank you greatly sir. Can this work for an API or I have to use a different approach

    • @thejourneyofdevops1791
      @thejourneyofdevops1791  Місяць тому +1

      You can use the same approach for an API, but you'll need to adjust the configuration and authorization.

  • @PaulA-c4x
    @PaulA-c4x Місяць тому +1

    Can this work with .NET YARP Gateway?

    • @thejourneyofdevops1791
      @thejourneyofdevops1791  Місяць тому

      Yes.
      1. Prerequisites
      Azure Entra ID Tenant: You need an app registration in Azure Entra ID for the YARP gateway.
      .NET YARP Gateway: A working YARP-based reverse proxy project.
      Backend Services: Services the YARP gateway will proxy requests to.
      Microsoft.Identity.Web: A NuGet package for seamless integration with Azure Entra ID in .NET applications.
      2. Register YARP Gateway in Azure Entra ID
      3. Install Required NuGet Packages
      4. Configure appsettings.json
      5. Configure Program.cs

  • @ayushgupta5702
    @ayushgupta5702 2 місяці тому +1

    Hey I am developing SSO in .Net Core Web Api as my backend and Angular as my front end application can you help me out with my problem that I am using Azure AD as identity provider and SAML Response for authentication, but I am stuck in redirecting back to my frontend application If i am taking the response from Azure AD at the backend Endpoint.Since the link is getting broken from the client application to the my server application. I have tried solutions like polling not getting success in it. If you have any idea please connect with me.

    • @thejourneyofdevops1791
      @thejourneyofdevops1791  Місяць тому

      Not sure may be you can give a try on these options.
      Option 1: Use a Frontend-Handled Relay State
      Option 2: Direct Frontend Redirection from the Backend