You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New example proposal: behind a proxy, useful for corporate usage
// With ES5
var JiraApi = require('jira-client');
var rp = require('request-promise');
// Initialize
var jira = new JiraApi({
protocol: 'https',
host: 'jira.somehost.com',
username: 'username',
password: 'password',
apiVersion: '2',
strictSSL: true,
promise = rp.defaults({
"proxy": "http:/proxyUsername:[email protected]:8080" // note for proxyPasswor: replace all special characters with unicode hexs
})
});
....
Thanks !
The text was updated successfully, but these errors were encountered:
Hello,
New example proposal: behind a proxy, useful for corporate usage
Thanks !
The text was updated successfully, but these errors were encountered: