Advertisement
Guest User

Untitled

a guest
Sep 6th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. $.ajax({
  2. url: 'https://ec-portal-backend.herokuapp.com/o/token/',
  3. type: 'POST',
  4. data: {
  5. client_id: '',
  6. client_secret: '',
  7. grant_type: 'password',
  8. username: $('#username').val(),
  9. password: $('#password').val()
  10. },
  11. success: function (tokendata) {
  12. window.localStorage.setItem('company', logindata["company"]["id"]);
  13. window.localStorage.setItem('token', tokendata['access_token']);
  14. window.localStorage.setItem('refresh', tokendata['refresh_token']);
  15. window.location = "/";
  16. },
  17. error: function (error) {
  18. console.log(error);
  19. }
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement