API Google Адресов: INVALID_REQUEST - PullRequest
0 голосов
/ 23 января 2019

Привет! Я пытаюсь использовать API мест Google, но получаю статус INVALID_REQUEST, мой URL выглядит так, а ниже - мой код.

https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-122.449833,37.479942&radius=10000&key=MY_API_KEY

const url = 'https://maps.googleapis.com/maps/api/place/nearbysearch/json?' + 'location=' + region.longitude + ',' + region.latitude + '&radius=10000' + '&key=' + API_KEY;

// console.log(url)
// axios.get(url).then((response) => {
//     console.log(response)
// }).catch((err) => {
//     console.log(err)
// })

fetch(url).then((response) => {
    console.log(response.json())
})
.catch((err) => {
    console.log(err)
})
...