Guest User

Untitled

a guest
Jul 18th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. const request = require('request');
  2. const url = 'https://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&key=';
  3. request({
  4. url: url,
  5. json: true
  6. }, (error, response, body) => {
  7. console.log(body);
  8. });
Add Comment
Please, Sign In to add comment