Answer the question
In order to leave comments, you need to log in
How to deal with an error when receiving a BearerToken from ABBYY lingvo?
Their documentation is https://developers.lingvolive.com/en-us/Help .
I make a request:
const getBearerToken = async () => {
const response = await fetch('https://developers.lingvolive.com/api/v1.1/authenticate', {
method: 'POST',
headers: {
'Authorization': `Basic {${API_KEY}}`,
},
}).catch(err => console.error(err));
console.log(response);
};
getBearerToken();
Answer the question
In order to leave comments, you need to log in
Cors is not configured on the server you are contacting, which allow you to receive (send, etc.) data through the browser, so you will have to deploy a backing that will contact this address
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question