Currently I am trying to write a script in node.js to achieve following actions:
1. Login jira;
2. Create issue.
Here is my login code:
client.post('https://jira.stubcorp.com/login.jsp?permissionViolation=true', {
data: {
username: 'username',
password: 'password'
},
headers: {
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
"Content-Type": "application/json"
}
}, function (data, response) {
// ...
}In response, I cannot find seraph.rememberme.cookie to set in create jira api headers or valid JSESSIONID (as when I use the JSESSIONID in response header, create jira api always raise 401 error.)
Please help to check where goes wrong.
Thanks.