Guest User

Untitled

a guest
Oct 18th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. axios({
  2.  
  3. method: "post",
  4. url: url,
  5. data: data,
  6. mode: 'no-cors',
  7. headers: {
  8.  
  9. "token": userToken,
  10. "uuid": userId,
  11. "Content-Type": "text/plain;charset=utf-8;application/json",
  12. "Accept": "application/json",
  13.  
  14. }
  15.  
  16. })
  17. .then(response => {
  18.  
  19. console.log(response)
  20.  
  21. })
  22. .catch(error => {
  23.  
  24. console.log(error);
  25.  
  26. });
Add Comment
Please, Sign In to add comment