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
Clients must handle such redirects when requesting a change password url.
We should better clarify that resolving the Change Password URL may require following more than one redirect. For instance:
https://example.com/.well-known/change-password
may redirect to https://www.example.com/.well-known/change-password
which may redirect to https://www.example.com/actual-change-password-page
If a client only followed a single redirect, they’d be misled. This came up in issue #14.
The text was updated successfully, but these errors were encountered:
Should redirects from "http" to "https" be followed? I assume any client implementation would only use "https", but if my server is set up to redirect all "http" requests to "https" (before any other redirects), would that ever be a problem?
Today, we have this:
We should better clarify that resolving the Change Password URL may require following more than one redirect. For instance:
https://example.com/.well-known/change-password
may redirect to
https://www.example.com/.well-known/change-password
which may redirect to
https://www.example.com/actual-change-password-page
If a client only followed a single redirect, they’d be misled. This came up in issue #14.
The text was updated successfully, but these errors were encountered: