Session cookie
parent
54583888d1
commit
b0f16bc852
|
@ -41,7 +41,7 @@ const login = async (creds, logger) => {
|
||||||
return global.user = {
|
return global.user = {
|
||||||
firstName: fullName.split(' ')[0],
|
firstName: fullName.split(' ')[0],
|
||||||
lastName: fullName.split(' ')[1],
|
lastName: fullName.split(' ')[1],
|
||||||
phpsessid: sessionID.replace('PHPSESSID=', ''),
|
phpsessid: sessionID,
|
||||||
cookieHeader: cookieHeader,
|
cookieHeader: cookieHeader,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -59,7 +59,7 @@ const getHeaders = async () => {
|
||||||
'Content-Type': 'application/x-www-form-urlencoded',
|
'Content-Type': 'application/x-www-form-urlencoded',
|
||||||
'User-Agent': 'User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:65.0) Gecko/20100101 Firefox/65.0',
|
'User-Agent': 'User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:65.0) Gecko/20100101 Firefox/65.0',
|
||||||
'Cache-Control': 'no-cache',
|
'Cache-Control': 'no-cache',
|
||||||
'Cookie': `PHPSESSID=${global.user.phpsessid || ''}`,
|
'Cookie': `${global.user.phpsessid || ''}`,
|
||||||
},
|
},
|
||||||
transform: function (body) {
|
transform: function (body) {
|
||||||
return cheerio.load(body);
|
return cheerio.load(body);
|
||||||
|
|
Loading…
Reference in New Issue