Text Analysis

GRATUITO
Por Bhavya Gaur | Atualizado 5 days ago | Text Analysis
Popularidade

9.8 / 10

Latência

380ms

Nível de serviço

100%

Health Check

N/A

Voltar para todas as discussões

validation error, incorrect data passed to the server for JS code

Rapid account: Srinichrocks
srinichrocks
2 years ago

Hi, I tried using JSON.stringify to convert the Javascript object which currently looks like this(message is a state variable I have):

{
“language”:“english”,
“summary_percent”:10,
“text”:{message}
}

But for some reason, it does not work. Does anyone have suggestions as to what I could use in order to convert the javascript object into a json string as I keep getting the error “validation error, incorrect data passed to the server”

Rapid account: Readervm
readervm Commented 2 years ago

See if the below JS code helps…

const data = {
“language”: “english”,
“text”: “Falcon 9’s first stage has landed on the Of Course I Still Love You droneship – the 9th landing of this booster”
};
const options = {
method: ‘POST’,
headers: {
‘content-type’: ‘application/json’,
‘X-RapidAPI-Key’: ‘Your API Key’,
‘X-RapidAPI-Host’: ‘text-analysis12.p.rapidapi.com
},
body: JSON.stringify(data)
};

fetch(‘https://text-analysis12.p.rapidapi.com/sentiment-analysis/api/v1.1’, options)
.then(response => response.json())

Rapid account: Gaurmanojkumar 530
gaurmanojkumar530 Commented 2 years ago

The default RapidAPI code generator for JS using Axios library works. Please refer it.

Junte-se à discussão - adicione o comentário abaixo:

Efetue login / inscreva-se para postar novos comentários