You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When configuring a SitePassword Azure Static Apps will redirect any visitor to .auth/basicAuth/login?originalPath=.
After providing the password the app will redirect back to the originalPath.
However if the original URL contains a querystring the app will strip it from the originalPath and redirect to path without querystring.
To Reproduce
Steps to reproduce the behavior:
Configure a Sitepassword
Go to https://yourapp.azurestaticapps.net/test?qs=testqs
The app will redirect to https://yourapp.azurestaticapps.net/.auth/basicAuth/login?originalPath=test (querystring is already stripped)
Enter password
The app will redirect to https://yourapp.azurestaticapps.net/test and the querystring is lost.
Expected behavior
The app preserves the original querystring in the auth-flow.
The text was updated successfully, but these errors were encountered:
Describe the bug
When configuring a
SitePassword
Azure Static Apps will redirect any visitor to.auth/basicAuth/login?originalPath=
.After providing the password the app will redirect back to the
originalPath
.However if the original URL contains a querystring the app will strip it from the
originalPath
and redirect to path without querystring.To Reproduce
Steps to reproduce the behavior:
Sitepassword
https://yourapp.azurestaticapps.net/test?qs=testqs
https://yourapp.azurestaticapps.net/.auth/basicAuth/login?originalPath=test
(querystring is already stripped)https://yourapp.azurestaticapps.net/test
and the querystring is lost.Expected behavior
The app preserves the original querystring in the auth-flow.
The text was updated successfully, but these errors were encountered: