Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add BWA + web API coverage and sample app #34927

Closed
guardrex opened this issue Mar 9, 2025 · 17 comments · Fixed by #35012
Closed

Add BWA + web API coverage and sample app #34927

guardrex opened this issue Mar 9, 2025 · 17 comments · Fixed by #35012

Comments

@guardrex
Copy link
Collaborator

guardrex commented Mar 9, 2025

Description

@mihirpatelipsos ... Let's discuss it over here. That issue is for a different type of app. I'll get back to you soon!

We desperately need a code sample for Blazor Web App + External Secure Web API access from Blazor Web App. To start with using Microsoft Entra. There are so many challenges to reach to this stage for integration between Blazor Web app and Secure API. A sample code here would help a lot.

I can see weather data api is part of the server application itself.
My requirement is api being completly stand alone project and not part of blazor app. The api could be hosted on different server.

Page URL

https://learn.microsoft.com/en-us/aspnet/core/blazor/call-web-api?view=aspnetcore-9.0

Content source URL

https://github.com/dotnet/AspNetCore.Docs/blob/main/aspnetcore/blazor/call-web-api.md

Document ID

c7e59a08-1c60-32c2-75fd-33cb77ff7a5d

Platform Id

32bfc271-12a7-7ce3-dcec-43ac2e8c68d7

Article author

@guardrex

Metadata

  • ID: 8b5e2e10-ff7b-2b9f-84da-f16028ae2c53
  • PlatformId: 32bfc271-12a7-7ce3-dcec-43ac2e8c68d7
  • Service: aspnet-core
  • Sub-service: blazor

Related Issues

@mihirpatelipsos
Copy link

mihirpatelipsos commented Mar 10, 2025 via email

@guardrex
Copy link
Collaborator Author

guardrex commented Mar 10, 2025

I'll answer as much as I can, and then Stephen Halter can correct me on anything and possibly add additional remarks. I have a couple of questions at the end that pertain to docs.

Here's a little rundown on where things are at with this scenario (BWA calling a secure external web API) AFAIK ...

We defer to the main doc set for regular ASP.NET Core web API coverage for general basics and external web API setup and configuration, including security ...

On the Blazor side, we just needed to pass tokens into Blazor so that Razor components could make requests to web APIs. Now, the following link is for .NET 7 or earlier (Blazor Server, NOT Blazor Web Apps) ...

https://learn.microsoft.com/aspnet/core/blazor/security/additional-scenarios?view=aspnetcore-7.0#pass-tokens-to-a-server-side-blazor-app

Blazor Web Apps came on the scene at .NET 8. There were problems/challenges with the passing token approach that works in Blazor Server apps, so we told devs the following (this link is to the current content) ...

https://learn.microsoft.com/aspnet/core/blazor/security/additional-scenarios?view=aspnetcore-9.0#pass-tokens-to-a-server-side-blazor-app

... and you can refer to those cross-links in the product unit's repo to learn more ... especially this Halter remark ... dotnet/aspnetcore#52390 (comment).

To make external web APIs work well with Blazor Web Apps (.NET 8 or later) ... and also to take advantage of the other benefits of the BFF pattern ... we added an article+sample for the BFF pattern for Blazor Web Apps ...

https://learn.microsoft.com/aspnet/core/blazor/security/blazor-web-app-with-oidc?view=aspnetcore-9.0&pivots=with-bff-pattern

My current understanding is that the product unit recommends that you adopt the BFF pattern.

☝ That's the direct answer to your question, @mihirpatelipsos, AFAIK.

That article+sample is OIDC, which will run with Entra. The article even has a section on using Entra for roles/security groups/AAD built-in Admin Roles authentication. If header length is a problem with the approach in that section because users have many roles and/or security groups, it refers the dev to Microsoft Graph coverage so that the claims are obtained outside of headers. Also, the article+sample (especially the sample anyway in it's Program file config) explains scope configuration for the weather data web API using Entra. You would base your web API setup on the weather data web API in the article+sample, which is a separate app (MinimalApiJwt) ... which is what you're asking about.

My questions for Stephen are ...

  1. The current BFF-patterned article+sample is OIDC. It shouldn't be very hard for a dev to convert that OIDC sample over to MS Identity Web packages and API for Azure hosting with Entra. Do you prefer the status quo on the coverage that we have, or should we have a BFF pattern article+sample for MS Identity Web packages/Entra with Azure hosting? I think if you want me to add that, we can do what we've done in the past: I'll work it up into a PR within the new few weeks and then ping you for review. Otherwise, we'll not take any action and just close this issue as a 'won't fix' for the docs and continue to refer devs to the BFF-OIDC article+sample.

  2. Just to clarify that when you work the Access AuthenticationStateProvider in outgoing request middleware (dotnet/aspnetcore #52379) issue that the passing tokens scenario that we used to describe for Blazor Server will work in the global interactive Server BWA case? If that's right, then I'll be able to bring back coverage similar to the old Blazor Server coverage for global interactive Server BWAs, possibly adding a section to the Secure an ASP.NET Core Blazor Web App with Microsoft Entra ID article on it as well. It's covered by an existing docs issue at Update section on passing tokens in Blazor Web Apps #31691 for .NET 10 article work. Then beyond global Interactive Server, we can discuss what to cover for global interactive Auto solutions based on passing tokens and how it might affect the existing articles+samples, if at all.

  3. One more added question ... not related directly to this, but it is related to the OIDC article+samples. When you were working on Pushed Authorization Requests (PAR) for the framework, did you happen to hear if/when Entra would be supporting PAR? There's not a peep on it anywhere AFAICT.

@guardrex
Copy link
Collaborator Author

guardrex commented Mar 10, 2025

One more thing, @mihirpatelipsos ...

I'm making improvements to help surface the various articles and samples on Secure data with Interactive Auto rendering (dotnet/AspNetCore.Docs #34765). The BFF pattern OIDC approach is being added to the Call web API article, along with the other new articles+samples.

... I might revise that further after I hear Halter's response to my comments ☝.

Note to Stephen Halter ... that PR is still stuck waiting on further feedback/updates. However, I did place the language of main concern into a PR comment that you might be able to review quickly to allow me to merge that PR ...

#34765 (comment)

@mihirpatelipsos
Copy link

Thanks a lot @guardrex . I'll review your note and get back to you with any questions.

Meanwhile I tried OIDC with BFF pattern and it worked with single API scenario, but I am trying to access multiple downstream APIs and it seems OIDC was failing with static scope limit exceeded error.

Image

Code:
Image

@guardrex
Copy link
Collaborator Author

guardrex commented Mar 10, 2025

I see! Halter (and/or Javier) will need to remark on that. Let's do this for that error to get you a faster response ........

Open an issue for the product unit here ...

https://github.com/dotnet/aspnetcore/issues

Just tell them them that you're following the BWA with OIDC (BFF pattern) article and sample ...

Show them that error and see if they can help you get that running.

Please add ...

cc: @guardrex https://github.com/dotnet/AspNetCore.Docs/issues/34927

... to the bottom of your opening comment so that I can follow along. What I think is going to happen is that I'm going to end up opening a new issue for that article for that error scenario. That will cover it separately from this issue.

This issue can just be about how we address BWAs with external web APIs generally. I'll ping Halter tomorrow after you have a chance to add any of your own questions to my three questions.

@mihirpatelipsos
Copy link

Thanks a lot @guardrex .
The issue is now created here.

dotnet/aspnetcore#60868

@guardrex
Copy link
Collaborator Author

guardrex commented Mar 11, 2025

Thanks ... I'll keep an 👁 on that.

... and I'll reach out to Stephen Halter later today about this issue.

@guardrex
Copy link
Collaborator Author

guardrex commented Mar 12, 2025

We chatted offline, and ....... 🥁🥁🥁 .......

🎆 Yes! 🎉

I'll place a BWA BFF sample with MS Identity Web packages for devs seeking to host in Azure with Entra and with a separate web API for multiple frontend apps. It's a nice layout for Microsoft-y-ish peeps! I'll try get to it later this week or early next week. I'll ping you on the PR when it goes up.

As for the issue you opened for the OIDC sample, I'll keep an 👁 on that to see where it goes. If it's a framework bug, I might need to add something to the article about it. If it is some sort of misconfiguration of the sample, then I'll fix it ... whatever it is.

@guardrex
Copy link
Collaborator Author

Side question for you, @mihirpatelipsos ... When you run the OIDC BFF sample, are you getting the stylesheet to load correctly for the app because I'm making an Entra version of it, and I'm not getting styles ...

Image

However, the @import 'BlazorWebAppEntra.Client.4vsgcqpzsk.bundle.scp.css'; seems to be working fine ...

Image

@mihirpatelipsos
Copy link

Hi @guardrex, yes it is working fine in OIDC version.

Image

Image

@guardrex
Copy link
Collaborator Author

👽

Strange! ... I'll study it a bit more and see if I can figure out what's going wrong with it.

Otherwise, I'm off to a good start. The app is running (with Aspire), log in and log out are working. I'm at the stage of working on the access token for the weather data. I'm probably going to stop here for the day and pick back up with it tomorrow morning. So far, so good! ... well ... except for the styles not getting applied correctly! 🙈😆

@guardrex
Copy link
Collaborator Author

😆

Image

Well! That was simple enough to fix!!! ...... Delete the obj/bin folders of the BWA server and client projects! 🙈😝

Ok ... I'll pick back up with the weather data web API piece tomorrow.

@mihirpatelipsos
Copy link

Hi @guardrex , Just checking in to see what's the latest with this?

@guardrex
Copy link
Collaborator Author

guardrex commented Mar 17, 2025

Working on it right now.

I have the app working with Entra, including weather forecast data coming down from the web API. However, the docs that they have on implementing the MSAL-based in-memory token cache (i.e., not saving tokens to the cookie) aren't helping me understand why the HttpContext doesn't include the access token when SaveTokens isn't set. I'll need at least today and tomorrow morning to either get it working and ping Halter or just put up what I have and ping Halter on how to make it work.

@guardrex
Copy link
Collaborator Author

guardrex commented Mar 17, 2025

NOTE TO SELF 🦖

When the article pivot or article goes up, the Call web API and Security > Index articles will need a cross-link paragraph to it. Done! 👍

@guardrex
Copy link
Collaborator Author

guardrex commented Mar 18, 2025

Ok ... I think I have at least the basics to make it work using the in-memory token provider.

https://github.com/dotnet/blazor-samples/tree/guardrex/bwa-oidc-bff-entra-sample/9.0/BlazorWebAppEntraBff

DON'T actually use that for a production app! 🙈 ... It's bound to have nasty 🦖💩👃 code smells in it until Halter can tell me how to finish it up.

For one thing, I didn't implement the OIDC cookie refresh piece that he has in the OIDC version of the sample. I'm not sure if he wants that left in place or not.

However! 🎉 ... The basics of the app are working, and I'm happy with it thus far.

I'll contact Halter now offline to see when he can look and provide feedback on it. I'll keep you posted. UPDATE: Done! 👍 I just sent him an email with a couple of questions and asking if he'll look at the draft sample app and provide suggested changes. I'll keep you posted here.

@guardrex guardrex moved this from Triage to In progress in Blazor.Docs Mar 18, 2025
@guardrex
Copy link
Collaborator Author

The latest news is GOOD NEWS 👍 on the sample app. Halter says that it's fairly close to what we need 🎉. I am supposed to remove 🔪 the OIDC cookie refresher bits. He says that they aren't needed with MS Identity Web. I'm also probably going to change the way that the Weather.Get scope is constructed from configuration. Other than those two NIT items, the sample is probably fine. I'll probably be working on it further in the morning (Wednesday), including possibly merging the sample into the Blazor samples repo. I might even be able to write up the article pivot to go with the sample app.

@github-project-automation github-project-automation bot moved this from In progress to Done in Blazor.Docs Mar 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

2 participants