Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const data = {
  2. 'username': 'username',
  3. 'password': 'password'
  4. };
  5.  
  6. const options = {
  7. method: 'POST',
  8. headers: { 'content-type': 'application/x-www-form-urlencoded' },
  9. data: qs.stringify(data),
  10. url: '/login_submit',
  11. };
  12.  
  13. axios(options)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement