Guest User

Untitled

a guest
May 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. fetch('https://mylocalip:5000/api/token')
  2. .then(function (response) {
  3. console.log('response : ',response)
  4. return response.json();
  5. }).then (function (response) {
  6. this.setState({
  7. token: response.token
  8. });
  9. }).catch(function (error) {
  10. console.log(error);
  11. });
Add Comment
Please, Sign In to add comment