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
e.g. having proxyUrl = 'http://username:a6%[email protected]:8888' will throw Uncaught URIError: URI malformed (see https://github.com/apify/got-scraping/blob/master/src/agent/h1-proxy-agent.ts#L21) I think it should work even with such passwords
proxyUrl = 'http://username:a6%[email protected]:8888'
Uncaught URIError: URI malformed
ref sindresorhus/got#1317
The text was updated successfully, but these errors were encountered:
This is correct, %6q is malformed. You need to percent-encode % as %25:
%6q
%
%25
http://username:a6%[email protected]:8888
Sorry, something went wrong.
No branches or pull requests
e.g. having
proxyUrl = 'http://username:a6%[email protected]:8888'
will throw
Uncaught URIError: URI malformed
(see https://github.com/apify/got-scraping/blob/master/src/agent/h1-proxy-agent.ts#L21)I think it should work even with such passwords
ref sindresorhus/got#1317
The text was updated successfully, but these errors were encountered: