Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
fetch('https://json.geoiplookup.io') .then(response => response.json()) .then(json => json.ip) .then(data => { fetch(`https://ipapi.co/${data}/json/`) .then(resp => console.log(resp)); })
fetch('https://json.geoiplookup.io') .then(response => response.json()).then(({ip})=>{ fetch(`https://ipapi.co/${ip}/json/`) .then(resp => console.log(resp)); })
В ответ приходит response объект, а не данные о пользователе
resp.json()