Advertisement
Guest User

Untitled

a guest
May 26th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $http({
  2.         method: 'GET',
  3.         headers: {
  4.           username: params.username,
  5.           password: params.password,
  6.           'Accept': 'application/json'
  7.         },
  8.         timeout: 15000,
  9.         url: 'urlnya'
  10.       }).then(function successCallback(response) {
  11.        
  12.         console.log(response.data); // Dapet Key
  13.  
  14. },function errorCallback(response) {
  15.         console.log(response)
  16.  
  17.       });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement