We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Following code:
http.request('http://[::1]:80/foo',function(res) { res.on('end', function() { console.log('request status: ' + res.statusCode); }); }).on('error', function(e) { console.log(e.message); }).end();
will result in this error message: Failed to execute 'fetch' on 'Window': Failed to parse URL from http://::1:80/foo
Failed to execute 'fetch' on 'Window': Failed to parse URL from http://::1:80/foo
The problem seems to be that the implementation is not aware of literal IPv6 addresses in the URL (see https://www.ietf.org/rfc/rfc2732.txt).
The text was updated successfully, but these errors were encountered:
bef2b95
No branches or pull requests
Following code:
will result in this error message:
Failed to execute 'fetch' on 'Window': Failed to parse URL from http://::1:80/foo
The problem seems to be that the implementation is not aware of literal IPv6 addresses in the URL (see https://www.ietf.org/rfc/rfc2732.txt).
The text was updated successfully, but these errors were encountered: