Text Analysis

免费
通过 Bhavya Gaur | 已更新 5 days ago | Text Analysis
人气

9.8 / 10

延迟

367ms

服务等级

100%

Health Check

N/A

返回所有讨论

Axios endpoint not working?

I was trying to use the sample code as shown on the article extraction, and while the test endpoint works, I cannot get the endpoint to work locally at all.

I get:

**{
time_taken: 0.0007228851318359375,
msg: ‘validation error, incorrect data passed to the server’,
ok: false
}
**

Again, I’m using the sample code as shown, literally, with Node.js and Axios.

Rapid account: Gaurmanojkumar 530
gaurmanojkumar530 Commented 2 years ago

I am glad to know dreamreal@gmail.com that your issue has been solved. To everyone else please post only working and complete solutions.

Rapid account: Dreamreal F Qa Fytryf 0
dreamreal-FQaFytryf0 Commented 2 years ago

Okay, thank you - you’re right, using a different approach worked through the issues. The code I used, BTW, looked like this, as generated verbatim by Postman but with data replaced with gibberish:

var axios = require('axios')
var FormData = require('form-data')
var data = new FormData()
data.append('language', 'english')
data.append('url', 'https://jlhagsdljghaskjhaksjdhgasd')

var config = {
  method: 'post',
  url: 'https://text-analysis12.p.rapidapi.com/article-extraction/api/v1.3',
  headers: {
    'X-RapidAPI-Host': 'text-analysis12.p.rapidapi.com',
    'X-RapidAPI-Key': 'lkjsldkjhalskdlakshdlakjhsdlkjahsd',
    ...data.getHeaders()
  },
  data: data
}

axios(config)
  .then(function (response) {
    console.log(JSON.stringify(response.data))
  })
  .catch(function (error) {
    console.log(error)
  })

This code can be (and will be) optimized, but it works better than the sample code offered through RapidAPI.

Rapid account: Gaurmanojkumar 530
gaurmanojkumar530 Commented 2 years ago

The test code is auto-generated by RapidAPI. It is not correct always for all languages and frameworks. You can try postman’s auto code generation it does a better job sometimes. When you get “validation error” with 200 status code it means that everything works correctly on our end. Your client side code has not been formatted correctly.

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

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