Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. let requestURL = 'https://myServer/php/setUserPushInfo.php?user=user&PushToken=fc0112d3936f738d9d4c197c50abf80304ab13fca48b19d539ecacf65ce58b34&OS=iOS&other=value';
  2.  
  3. this.http.get(requestURL).map(res => {
  4. console.log(JSON.stringify(res.json()));
  5. return res.json();
  6. },
  7. err => {
  8. console.log('ERROR ' + err);
  9. }
  10. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement