ExerciseDB

FREEMIUM
Door Justin | Bijgewerkt hace 9 días | Health and Fitness
Populariteit

9.9 / 10

Latency

376ms

Serviceniveau

95%

Health Check

100%

Terug naar alle discussies

The POST method cannot connect to the api

Rapid account: Movica 4 Ns 7
movica4ns7
hace 6 meses

router.post(’/’, async (req, res) => {
const { search } = req.body;

try {
if (search) {
const exercisesData = await fetchData (‘https://exercisedb.p.rapidapi.com/exercises’, exerciseOptions);

  const searchedExercises = exercisesData.filter(
    (exercise) => exercise.name.toLowerCase().includes(search)
           || exercise.target.toLowerCase().includes(search)
           || exercise.equipment.toLowerCase().includes(search)
           || exercise.bodyPart.toLowerCase().includes(search),
  );

  res.json(searchedExercises);
} else {
  res.json([]);

Its always return blank

Rapid account: Justin W Fns XH T 6
justin-WFnsXH_t6 Commented hace 5 meses

There is no POST methods in the api. Only GET methods.

Doe mee aan de discussie - voeg hieronder een opmerking toe

Log in / Schrij u in om nieuwe opmerkingen te plaatsen