Search the Community
Showing results for tags 'request'.
-
webSession event is fired and client is logged in, but when making http GET requests the cookie headers are not included on production (but works locally). Is it possible to manually include those / force them to be included? Production Request Headers: "headers": { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36", "accept-encoding": "gzip, deflate" } Local Request Headers: "headers": { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36", "accept-encoding": "gzip, deflate", "referer": "https://api.rollbit.com/auth", "cookie": "Steam_Language=english; timezoneOffset=0,0; sessionid=123; steamLogin=123; steamLoginSecure=123" } client.on('webSession', (sessionID, cookies) => { console.log('Logged on'); community.setCookies(cookies); loadCookies() }) function loadCookies() { var options = { url: url, method: 'GET', followAllRedirects: true } community.httpRequest(options, (err, response, body) => {}) }