-
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not prepend with authentication information portion of a URL #4
Comments
Basic Auth in the URL is deprecated and strongly recommended against. It was even removed from Chrome. You should rather use a header, or even better, something other than Basic Auth. http://serverfault.com/a/541206/11987 I would go with a mention in the docs, but if you really need it, I would be open to a good PR with tests. |
It Is not recommended, but still used. This can be useful for someone when working with URLs. |
How would you differentiate |
Digest auth is not deprecated, and can use the same |
The only way to support this is to let the user decide between only supporting |
Ok, in 1.0.4 you added support to ignore protocols with non colon-slash-slash. But now it not prepend with auth (the authentication information portion of a URL). Example:
In version 1.0.3 it worked correctly.
The text was updated successfully, but these errors were encountered: