Я пытаюсь получить полный текст, используя api gutendex. остальные данные получаю, но с текстом проблемы. Вот код самого запроса.
let { data: book } = await useFetch(`https://gutendex.com/books/5316`)
book = book._rawValue
const book_text_request = book.formats['text/html']
const { book_text } = await useFetch(book_text_request);
Полный текст ошибки
.No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
Как получить данные без ошибки? Или, может быть, знаете другой api для получения полного текста книг?