I am running into a weird issue/bug with Blazor Server Side and ASP.NET Core Identity, and it only happens on Chrome. It works perfectly on Microsoft Edge. Basically to login, I am using the default ASP.NET Identity Razor Page (i.e. /Identity/Account/Login) that has been scaffolded in my project since there are issues using signInManager and userManager in Blazor components. The problem is that when I first launch my project from Visual Studio and try to sign in, it gets "stuck" trying to login (i.e. the redirect to the returnUrl never completes). I just see a message at the bottom of Chrome saying "Processing Request". Now, if I just navigate to the page directly, it will show me as signed in. Subsequent login/logout requests work perfectly. It only happens when I try to sign in the first time. I've done my research, and I'm out of ideas of what could be causing the problem. I've even played around with the AspNetCore.Identity.Application cookie and thought it might have something to do with SameSite attribute. I changed it to from Lax to Strict, but the problem still persists. If anyone has any ideas, I would appreciate you sharing.
Blazor Server Side Login Page Not Redirecting on Chrome
1.4k Views Asked by Ray At
1
There are 1 best solutions below
Related Questions in GOOGLE-CHROME
- How to tweak the security policy of Chrome, in order to run "unsafe" snippets in the console?
- Is it possible to manipuate 3rd party Chrome Extensions Network Reqeuests?
- undetected_chromedriver urllib.error.URLError
- Load testing k6 browser + docker
- Editor texto estilo WYSIWYG
- NodeJS crashing chrome browser
- Difficulty Accessing HTTP URLs/IP Addresses Due to Browser Redirecting to HTTPS: Seeking Solutions
- Chrome extension MV3: persistent service worker die after wake up from hibernation
- Attempting to Bundle a Require Command For a Chrome Extension
- Launch URL from C# and detect when browser is closed
- Python selenium scrap data from dynamic website table
- Google Chrome is consuming a lot of CPU on a video call?
- Component drawing error React App on Android + Chrome
- Chrome Selenium CDP Bidi API - Next Commands sended to Target Session have no effect while the initial one does work
- Devtools not working when i try to inspect elements for selenium python it goes to previous page
Related Questions in AUTHENTICATION
- Authenticate Flask rest API
- Sends a personalised error message from the back-end to the front-end with Nuxt-auth
- How to connect Spotify PKCE Authorization Boilerplate to Login-Button in React
- Laravel SPA auth with Sanctum
- _supabaseClient__WEBPACK_IMPORTED_MODULE_1__.supabase.auth.signIn is not a function
- My openID Authentication return 'You must have either https wrappers or curl enabled.'
- How to detect the Minimization of Custom Chrome Tabs on Android?
- Wordpress redirect to homepage after successfully logged in
- How to modify the prebuilt UI of authentication in aws amplify version 6 in React Native
- Creating a login system for my website, navlist not working?
- Receiving 400 bad request on post when customer auth handler is used
- Creating Azure B2B login system with Vue.js frontend & Python Django backend
- Gradio chatbot: how to export individual conversation histories?
- Set-Cookie header not forwarded by nginx to the client
- git asking for authentication when auth.json is present while running composer update
Related Questions in BLAZOR-SERVER-SIDE
- How can I overwrite the localization strings in a library
- How to share authorization implemented in the server project with the client project in Blazor Web App Auto project?
- My Blazor UI is not responding on a domain, but working on another domain
- How to set language in a server-side rendering blazor app
- How can I debug server side rendering blazor code in a component?
- Azure AD guest account in web app authentication user claims data
- 3rd Party cookies error on deployment server
- In Blazor app, how do I access the JWT from Google sign-in and set the verified user?
- Blazor - get relatedTarget on focus out event
- How can I call a method for a <button> where I build the html up as a string?
- Custom templet of Blazor8 project causes Antiforgery cookie error
- Blazorise SelectedTabChanged method called twice hence ends up selecting wrong tab
- Need to read a cookie in blazor server mainlayout.cs
- Blazor (InteractiveServer) + ASP.NET Identity library & GDPR
- Is DotNetStreamReference exhausting my memory?
Related Questions in ASP.NET-IDENTITY-3
- I'm unable to get the authorization code when trying to authenticate an application with OpenIdDict
- AddIdentityCore and IDataProtectorProvider in .NET Identity
- How to correctly create navigation property to table defined in different context?
- Is There A Way to Get Identity of User on Failed ASP.NET Core Remote Authentication?
- Each parameter in the deserialization constructor must bind to an object property or field on deserialization
- Looking up ApplicationUser in each controller action
- Azure Active Directory with IdentityServer4 (Microsoft.AspNetCore.Identity.UI) - Step by Step Guide?
- How can I update a user's claims after they have logged in using ASP.NET Identity
- Asp.net core Identity Password reset "invalid token" even though tokens generated are identical
- ASP.NET Core Web App forced to login frequently
- IdentityServer4 can't add asp net core identity with custom user store
- ASP.NET Identity with Sustainsys Saml2 - How to persist ExternalLoginInfo Claims?
- Overriding SignInManager throwing an error on startup
- Blazor Server Side Login Page Not Redirecting on Chrome
- how to delete identity users on delete cascade?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This appears to only be an issue in chrome when using a development certificate for https. After publishing to IIS and using a valid ssl cert, the problem appears resolved.