Text Analysis

免费
通过 Bhavya Gaur | 已更新 4일 전 | Text Analysis
人气

9.8 / 10

延迟

393ms

服务等级

100%

Health Check

N/A

返回所有讨论

"validation error, incorrect data passed to the server"

Rapid account: Karimo 94
karimo94
2년 전

I am making a post request to the text summarizer endpoint using HttpUrlConnection.

				URL url = new URL(apiUrl);
				HttpURLConnection client = (HttpURLConnection) url.openConnection();
				client.setRequestProperty("content-type", "application/json");
				client.setRequestProperty("x-rapidapi-host", "text-analysis12.p.rapidapi.com");
				client.setRequestProperty("x-rapidapi-key", "hidden");
				client.setRequestMethod("POST");
				client.setDoOutput(true);

				String jsonBody = "{" +
					"\"language\":\"english\"," +
					"\"summary_percent\":" + summaryPercent + "," +
					"\"text\":" + "\"" + myTestString + "\"" + "}";

				//POST to endpoint first
				try(OutputStream os = client.getOutputStream()) {
					byte[] input = jsonBody.getBytes("utf-8");
					os.write(input, 0, input.length);
				}

For some reason, when I make the request via RapidApi it works, but when I do it via Java the response is always this:

{3 items
"time_taken":0.0007703304290771484
"msg":“validation error, incorrect data passed to the server”
“ok”:false
}

I have made sure my JSON body passed in is in good format. Any ideas?

Rapid account: Gaurmanojkumar 530
gaurmanojkumar530 Commented 2년 전

We are glad that you were able to solve the issue. Thank you for choosing us.

Rapid account: Karimo 94
karimo94 Commented 2년 전

I have solved it. The way to create the JSON payload is to use Gson library by putting all the request parameters into a map, then using Gson to convert it into proper json. The request now works, thank you.

Rapid account: Karimo 94
karimo94 Commented 2년 전

@gaurmanojkumar530 https://devqa.io/how-to-convert-java-map-to-json/

what parameters are we converting from the map to JSON? is it the headers? or the JSON payload itself?

Rapid account: Gaurmanojkumar 530
gaurmanojkumar530 Commented 2년 전

I am not familiar with Java.
But do you have a way to convert a Dictionary or Key-Value pair to JSON in Java.
This is the way we do it in python.
It is best to use a dedicated library for this purpose.

加入讨论 - 在下面添加评论:

登录/注册以发布新的评论