Text Analysis

무료
분류별 Bhavya Gaur | 업데이트됨 15 days ago | Text Analysis
인기

9.8 / 10

지연 시간

327ms

서비스 수준

100%

Health Check

N/A

모든 토론으로 돌아가기

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.

아래에 의견을 추가하고 토론에 참여하세요.

새 댓글을 게시하려면 로그인 / 가입