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
In the original request lib, to use basic authentication you set auth.user and auth.pass in options
auth.user
auth.pass
request.get('http://some.server.com/', { 'auth': { 'user': 'username', 'pass': 'password', 'sendImmediately': false } });
Ref: https://www.npmjs.com/package/request#http-authentication
But browser-request expectsauth.username and auth.password. See
auth.username
auth.password
browser-request/index.js
Line 160 in 5966b45
This breaks compatibility between the two libs.
The text was updated successfully, but these errors were encountered:
Allow multiple auth keys
72160fd
This fixes iriscouch#41
No branches or pull requests
In the original request lib, to use basic authentication you set
auth.user
andauth.pass
in optionsRef: https://www.npmjs.com/package/request#http-authentication
But browser-request expects
auth.username
andauth.password
. Seebrowser-request/index.js
Line 160 in 5966b45
This breaks compatibility between the two libs.
The text was updated successfully, but these errors were encountered: