Код: Выделить всё
let apiQuotes = [];
// Get quote from Api
async function getQuotes(){
const apiUrl = 'http://api.forismatic.com/api/1.0/?method=getQuote&lang=en&format=json';
try {
const response = await fetch(apiUrl);
apiQuotes = await response.json;
console.log(apiQuotes);
} catch (error) {
console.log('whoo! there is an', error);
}
}
// on load
getQuotes();
Подробнее здесь: https://stackoverflow.com/questions/798 ... ors-policy