Advertisement
Guest User

Untitled

a guest
Mar 12th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var options = { method: 'POST',
  2.   url: 'https://www.fysiken.nu/umbraco/Surface/User/UserLogin',
  3.   qs: { locale: 'sv-SE', referrer: '2213' },
  4.   headers:
  5.    { 'Postman-Token': '43e4729b-3fdd-4c4c-a345-5b1cc238bf45',
  6.      'Cache-Control': 'no-cache',
  7.      'Content-Type': 'application/x-www-form-urlencoded',
  8.      'content-type': 'multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' },
  9.   formData:
  10.    { __RequestVerificationToken: 'eXzYrfba-KY0Qn5OGLNEpcrsN_ixZMylWMCawGMZTHApf3xpe1tsamHhLdjKRWXGmtVfsw62Tt37qfosziCJw4iRfQc70aQ9hovgtzGzDus1',
  11.      Username: 'pthoresson@gmail.com',
  12.      Password: '19920820' } };
  13.  
  14. request(options, function (error, response, body) {
  15.   if (error) throw new Error(error);
  16.  
  17.   console.log(body);
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement