Thank you for reaching out to Microsoft Q & A forum.
Thanks for reaching out. The ERR_SSL_PROTOCOL_ERROR typically indicates a problem with the local HTTPS configuration or development certificate.
Please try the following steps:
1.Reset and trust the development certificate by running:
dotnet dev-certs https --clean
dotnet dev-certs https --trust
2.Check your launchSettings.json to ensure the HTTPS settings are correct:
"applicationUrl": "https://localhost:5001",
"sslPort": 5001
3.Try accessing the app in a different browser or an incognito/private window to rule out caching or certificate issues.
Also, ensure all redirect URIs in your configuration use HTTPS consistently.
If you have found the answer provided to be helpful, please click on the "Accept answer/Upvote" button so that it is useful for other members in the Microsoft Q&A community.