-
Notifications
You must be signed in to change notification settings - Fork 25.2k
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
Comments
[EDIT by guardrex to remove duplicated content]
Hi Luke,
Thanks you so much being patient with me and apologies for spamming the other thread.
The main issue is in sample code for external API is not secured using Entra ID or JWT so need some example to refer. Combining multiple documents to reach the solution results in scope or aud related issue.
Thanks,
Mihir
|
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) ... 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) ... ... 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 ... 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 My questions for Stephen are ...
|
One more thing, @mihirpatelipsos ... I'm making improvements to help surface the various articles and samples on Secure data with Interactive Auto rendering ( ... 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 ... |
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. |
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 ...
... 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. |
Thanks a lot @guardrex . |
Thanks ... I'll keep an 👁 on that. ... and I'll reach out to Stephen Halter later today about this issue. |
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. |
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 ... However, the |
Hi @guardrex, yes it is working fine in OIDC version. |
👽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! 🙈😆 |
Hi @guardrex , Just checking in to see what's the latest with this? |
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 |
NOTE TO SELF 🦖
|
Ok ... I think I have at least the basics to make it work using the in-memory token provider. 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.
|
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 |
Description
@mihirpatelipsos ... Let's discuss it over here. That issue is for a different type of app. I'll get back to you soon!
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
Related Issues
The text was updated successfully, but these errors were encountered: