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
We need to set oAuth header in stead of username:password. Is this possible?
According to this, they seem to be hardcoded. And auth is hardcoded as user:pass.
req = (this.ssl ? https : http).request({ host: this.host, port: this.port, path: '/' + path.replace(/^\//, ''), method: 'POST', headers: { 'Content-Type': 'application/json' }, // <------ here, no options to override agent: this.agent, auth: (auth) ? auth.username + ':' + auth.password : '' });
The text was updated successfully, but these errors were encountered:
#1662 may help as well [#1021 was already cherry picked to master]
Sorry, something went wrong.
No branches or pull requests
We need to set oAuth header in stead of username:password. Is this possible?
According to this, they seem to be hardcoded. And auth is hardcoded as user:pass.
The text was updated successfully, but these errors were encountered: