-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[Bug] Uri.parse failes to currectly parse url like: http://user:^@example.com #56114
Comments
Summary: |
I think the |
Yes, RFC 3986 does not define the Thus, the expected behavior is:
|
The behavior is intended. That means that what |
Thank you for your response. After careful consideration, if the value of I have raised an issue in the HTTP library. dart-lang/http#1256 |
Uri.parse
is unable to correctly parse cases where the userInfo section contains special characters, such as:http://user:^@example.com
Running the following code:
The printed log is:
user:%5E
, but the expected value is:user:^
The text was updated successfully, but these errors were encountered: