Text Analysis

KOSTENLOS
Durch Bhavya Gaur | Aktualisiert 4 days ago | Text Analysis
Popularität

9.8 / 10

Latenz

380ms

Service Level

100%

Health Check

N/A

Zurück zu allen Diskussionen

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.

Nehmen Sie an der Diskussion teil - fügen Sie unten einen Kommentar hinzu:

Anmelden / Registrieren, um neue Kommentare zu veröffentlichen