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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
e.g. having proxyUrl = 'http://username:a6%6qgx12345@127.0.0.1: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%6qgx12345@127.0.0.1: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%256qgx12345@127.0.0.1:8888
Sorry, something went wrong.
No branches or pull requests
e.g. having
proxyUrl = 'http://username:a6%6qgx12345@127.0.0.1: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: