Looking for a great home cooked, country style breakfast? You’ll find it here at Vida Cafe
A favorite Breakfast spot for locals. Pretty good diner lunch as well.
var axios = require('axios');
var config = {
method: 'get',
url: 'https://maps.googleapis.com/maps/api/place/details/json?place_id=ChIJYfaXTO-_wFQR7KuLIwox04A=name%2Crating%2Cformatted_phone_number&key=AIzaSyANFpLxAp_BzV3PSTR-KGJiZansfIn6k1g',
headers: { }
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
There are no comments yet.