FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login

    Blazor WASM auth

    Scheduled Pinned Locked Moved
    Q&A
    8
    29
    68.4k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • J
      jphelps @dan
      last edited by

      @dan @ethalacker and I actually got the whole login/logout working with FusionAuth and Blazor wasm! 👍
      The last thing we are struggling with is the login redirect.

      Initially the login request is for an iframe and per the documentation FusionAuth includes a X-Frame-Options DENY. This iframe login fails in the browser, but then a full redirect is done and login works. We tried adding the request origin to the application configuration, per robotdan's suggestion in this stackoverflow post to cause FusionAuth to remove that header.

      The authorized request origin URLs does not appear to cause the header to be removed in our tests.

      Authorized request origin URLs Optional
      
          This optional configuration allows you to restrict the origin of an OAuth2 / OpenID Connect grant request. If no origins are registered for this application, all origins are allowed.
      
          By default FusionAuth will add the X-Frame-Options: DENY HTTP response header to the login pages to keep these pages from being rendered in an iframe. If the request comes from an authorized origin, FusionAuth will not add this header to the response. If you wish to load FusionAuth login pages in an iframe you will need to add the request origin to this configuration.
      
      
      K 1 Reply Last reply Reply Quote 2
      • robotdanR
        robotdan
        last edited by

        Assuming this is the same issue / thread as this SO issue ?
        https://stackoverflow.com/questions/64877185/blazor-wasm-to-work-with-testing-local-auth-server

        E 1 Reply Last reply Reply Quote 0
        • E
          ethalacker @robotdan
          last edited by

          @robotdan Yes it is the same. We can continue the discussion here.

          1 Reply Last reply Reply Quote 0
          • J
            jphelps
            last edited by

            Thanks for your help and responses @robotdan!

            @ethalacker and I have been going over this and we believe we understand why things are working the way they are.

            The Origin header is not being sent by the Blazor authentication system which is based on odic-client.js. Since the requests are coming from ajax/XHR and the Sec-Fetch-Mode header is navigate, the browser will not include the Origin header according to the Fetch API. Thus there is not a header for Fusion Auth to check.

            What I do find a bit confusing is the following. Why does Fusion Auth return the full login page html with an X-Frame-Options header with DENY, if it can see Sec-Fetch-Dest header is iframe and there is not a Origin header to check against the Authorized request origin URLs . It would make more sense to me to return a 302 redirect to the application login callback.

            We have tested our application against several oidc providers, and the other providers do a 302 redirect to the application login callback.

            1 Reply Last reply Reply Quote 1
            • robotdanR
              robotdan
              last edited by

              @jphelps said in Blazor WASM auth:

              Sec-Fetch-Dest

              We do not currently do anything with the Sec-Fetch-Dest header. This header doesn't look to be a widely supported, and even if we did look at this header, I don't understand how this would help. Doesn't this header just indicate the intended use?

              Is this a test setup, or do you plan to run this all on localhost in production as well? I would assume that if the fetch request thought it was making a request to a different host it may add the Origin header?

              I don't know what this means yet but in section 3.1 fo the Fetch spec it says the Origin header is not included in all fetches. I couldn't find any specific scenarios spelled out where it won't be sent.

              The Origin header is a version of the Referer [sic] header that does not reveal a path. It is used for all HTTP fetches whose request’s response tainting is "cors", as well as those where request’s method is neither GET nor HEAD. Due to compatibility constraints it is not included in all fetches.

              Regarding your question,

              What I do find a bit confusing is the following. Why does Fusion Auth return the full login page html with an X-Frame-Options header with DENY, if it can see Sec-Fetch-Dest header is iframe and there is not a Origin header to check against the Authorized request origin URLs . It would make more sense to me to return a 302 redirect to the application login callback.

              I suppose this is an option, in general we prefer to fail in such a way that it indicates something is wrong. If we redirect w/out a failure - the developer may not know there is a configuration error.

              How would returning 302 assist you in your integration?

              1 Reply Last reply Reply Quote 0
              • K
                kern.markus @jphelps
                last edited by

                @jphelps @dan @ethalacker
                I am currently struggling with the same scenario. How did you actually get it to work? Could you put it up as a sample project perhaps?

                K 1 Reply Last reply Reply Quote 0
                • K
                  kern.markus @kern.markus
                  last edited by

                  @kern-markus
                  @robotdan
                  @ethalacker

                  Hello. I have the same problem.
                  I am trying to make a local FusionAuth work with a .Net 7 Blazor WebAssembly project.

                  I have the following settings:

                  "FusionAuth": {
                    "Authority": "http://localhost:9011/",
                    "ClientId": "dc0ea808-5644-42af-b8de-718a71683959",
                    "ClientSecret": "gKqlvcI8TB5qJi89rNksKbrOOWbVx5UE0FNLBPc2AEI",
                    "RedirectUri": "https://localhost:7281/authentication/login-callback",
                    "PostLogoutRedirectUri": "https://localhost:7281/authentication/logout-callback",
                    "ResponseType": "code"
                  }
                  

                  fusionauth.jpg

                  I get:

                  Access to XMLHttpRequest at 'http://localhost:9011/.well-known/openid-configuration' from origin 'https://localhost:7281' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

                  I have previously managed to make my local FusionAuth work with the MVC sample project.
                  Could I please get some guidance as to what to do about this?

                  mark.robustelliM 1 Reply Last reply Reply Quote 0
                  • mark.robustelliM
                    mark.robustelli @kern.markus
                    last edited by

                    @kern-markus Hello. Are these still the right steps to replicate your specific issue?

                    @ethalacker said in Blazor WASM auth:

                    To Replicate

                    Use the new .NET 5 sdk.
                    dotnet new blazorwasm -au Individual -o BlazorAuthSample5 in the CLI/powershell
                    copy my Program.cs into yours. Only a few lines added/replaced.
                    change wwwroot/appsettings.json to include your fusionAuth clientId
                    dotnet run on folder and try to login

                    Is there anything else you want to add? Once I get confirmation, I will try to recreate on my end.

                    1 Reply Last reply Reply Quote 0
                    • K
                      kern.markus
                      last edited by

                      @mark-robustelli

                      Thank you!
                      That should be correct yes, except I am using .Net 7.

                      K 1 Reply Last reply Reply Quote 1
                      • K
                        kern.markus @kern.markus
                        last edited by

                        @mark-robustelli
                        Any new insights?
                        Best regards
                        Markus

                        K 1 Reply Last reply Reply Quote 0
                        • K
                          kern.markus @kern.markus
                          last edited by kern.markus

                          @kern-markus
                          @mark-robustelli
                          @ethalacker
                          @robotdan

                          Any progress on this? Is it possible that a workaround with some inserted javascript would help?

                          mark.robustelliM 1 Reply Last reply Reply Quote 0
                          • mark.robustelliM
                            mark.robustelli @kern.markus
                            last edited by

                            @kern-markus Sorry, I haven't had a chance to test this out yet. I hope to get to some time later this week. I will let you know what I find.

                            1 Reply Last reply Reply Quote 0
                            • K
                              kern.markus
                              last edited by

                              @mark-robustelli
                              Thanks for getting back in touch! I am also back on this problem just now.
                              I have got the authorization step working with this CORS setting:
                              Screenshot 2023-09-07 062930.png

                              However, something doesn't work on the redirect back. I get 'There was an error signing in', even though I get a response with a token. I am troubleshooting this right now.

                              K 1 Reply Last reply Reply Quote 0
                              • K
                                kern.markus @kern.markus
                                last edited by

                                @mark-robustelli

                                Ah, yes, it's this error that I have seen mentioned in the threads before:

                                Access to XMLHttpRequest at 'http://localhost:9011/oauth2/userinfo' from origin 'https://localhost:7281' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.

                                Is there a way to get around this problem? This seems to be the real stumbling block people have had if I understand correctly?

                                K 1 Reply Last reply Reply Quote 0
                                • K
                                  kern.markus @kern.markus
                                  last edited by

                                  @mark-robustelli

                                  So. I think I have an understanding of the actual issue now. After reading this post on Stack Overflow:

                                  https://stackoverflow.com/a/65859787

                                  It seems to me that there is a CORS setting that is needed on the FusionAuth API side if it is going to work with Blazor WebAssembly at all, and that setting is not currently available in configuration?
                                  So if I understand correctly, if we want to get FusionAuth to work with our Blazor solution, the only available option is a workaround: to implement authorization in our API instead.

                                  Can you confirm this? We need to get working on the workaround ASAP in that case, so a quick confirm and an indication to the right sample code would be very valuable.

                                  mark.robustelliM 1 Reply Last reply Reply Quote 0
                                  • mark.robustelliM
                                    mark.robustelli @kern.markus
                                    last edited by

                                    @kern-markus in the above, with the steps to reproduce, can you have share what you have in your builder.Services.AddOidcAuthentication function? Please remember to replace any sensitive information before sharing for things like client secret or anything of that nature.

                                    1 Reply Last reply Reply Quote 0
                                    • mark.robustelliM
                                      mark.robustelli
                                      last edited by

                                      @kern-markus, After spending far to long with this issue 🙂 I was able to get the full page redirect to re-route to FusionAuth, allow me to login, and the send be back to the sample app. The app seems to get stuck on 'Completing login...' however. I'm not sure what that is about, but I can see in the URL that the login has occurred.

                                      https://localhost:7055/authentication/login-callback#locale=en&scope=openid+profile&state=7cb3f5fc78db4d27b679d45ba415fc5c&userState=Authenticated&id_token=eyJhbGciOiJI....
                                      

                                      I think this has to do with the WASM app rather than fusion AUTH at this point. Are you at least able to make it that far?

                                      Screenshot 2023-09-08 at 1.55.53 PM.png

                                      1 Reply Last reply Reply Quote 0
                                      • K
                                        kern.markus
                                        last edited by

                                        @mark-robustelli

                                        Thank you.
                                        I came a step further than that. I get logged in but get the error message I described above:
                                        Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.

                                        Screenshot 2023-09-11 062331.png

                                        And when I googled around a bit more I came to the stackoverflow thread I linked in my last post before this one, which I understand to tell me that there is no way around this problem unless FusionAuth makes changes to CORS settings on your side.
                                        So what I need now is basically a confirm of this or an explanation of how to get around that particular problem.

                                        K 1 Reply Last reply Reply Quote 0
                                        • K
                                          kern.markus @kern.markus
                                          last edited by

                                          @mark-robustelli

                                          Here's my current settings and code:

                                          "FusionAuth": {
                                            "Authority": "http://localhost:9011/",
                                            "ClientId": "[id]",
                                            "ClientSecret": "[secret]",
                                            "RedirectUri": "https://localhost:7281/authentication/login-callback",
                                            "PostLogoutRedirectUri": "https://localhost:7281/authentication/logout-callback",
                                            "ResponseType": "code"
                                          },
                                          
                                          builder.Services
                                              .AddOidcAuthentication(options =>
                                              {
                                                  builder.Configuration.Bind("FusionAuth", options.ProviderOptions);
                                                  options.ProviderOptions.DefaultScopes.Add("openid");
                                              });
                                          
                                          mark.robustelliM 1 Reply Last reply Reply Quote 0
                                          • mark.robustelliM
                                            mark.robustelli @kern.markus
                                            last edited by mark.robustelli

                                            @kern-markus , my best guess at this point is that you are right in that it comes down to the way the request is sent and not having the expected headers to allow the CORS. I don't see any open issues for FusionAuth that may implement the suggested changes and I am not aware of a workaround other than to change the technology used for the application or insert some sort of proxy that can add the appropriate headers.

                                            K A 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post