Пытаюсь получить данные с магазина Steam через fetch, но почему-то выбивает ошибку
Получаю
данные (например, название игры) следующим образом:
function getGameInfo(id2) {
if (!id2) return;
fetch('//store.steampowered.com/api/appdetails?appids=' + id2)
.then(function(response) {
return response.json();
})
.then(function(data) {
$('.game-title').text(data.response.name);
})
.catch( alert);
}
$(document).ready(function() {
getGameInfo(475150);
});
В чем может быть проблема?
При том что по другому похожему запросу я без проблем получаю другие данные (количество игроков)
spoilerfunction getGameCount(id) {
if (!id) return;
fetch('//api.steampowered.com/ISteamUserStats/GetNumberOfCurrentPlayers/v0001/?key=9A37A83A303D364270C9832C153CAE23&format=json&appid=' + id)
.then(function(response) {
return response.json();
})
.then(function(data) {
$('.game-count').text(data.response.player_count);
})
.catch( alert );
}
$(document).ready(function() {
getGameCount(475150);
});
Песочница