Показать сообщение отдельно
  #2 (permalink)  
Старый 13.10.2021, 19:24
Кандидат Javascript-наук
Отправить личное сообщение для StartGames Посмотреть профиль Найти все сообщения от StartGames
 
Регистрация: 13.06.2014
Сообщений: 143

Сделал так:
<script>
$(document).ready(function(){
  let response;
  fetch('https://api.opensea.io/api/v1/bundles?owner=0x30f2449b71a67bb22e09eee89438431686189068')
  .then(response => response.json())
  .then(response => console.log(response))
  .then(bundles => alert(maker.bundles.user.username));
});
</script>


но выдает ошибку http://joxi.ru/KAgVR5RcNZyKG2
Ответить с цитированием