Estoy intentando hacer un ingreso de datos por metodo POST a un servicio de API GATEWAY que me debe debolver un valor de prediccion en funcion a tres valores que ingreso y no me devuelve nada, hice las pruebas en postman y todo sale bien, mi solicitud en postman no requiere ningun encabezado, solo url y el cuerpo, pero aqui en thunkable tengo error con ello, Agradeceria su ayuda.
Esta es mi consulta postman:
Este es mi codigo en thunkable
ya he probado hacer consultas post con otras apis y no tengo problemas, pero con esa en particular me da problemas, no se si se deba a los parametros de header, ya que en las otras si me solicitaron porque en postamn tambien los solicitaba, pero esta solicitud en postman no requeria ningun header o autorizacion y parece que tengo un error con la estructura de mi json
Como status me sale: undefine
como error me sale: Failed to fetch
el objeto que me devuelve es : null
Try giving the API Body text strings instead of numbers. You’re using 89, 13, and 36. What if you used “89”, “13”, and “36” instead? Does that work? I don’t know if it will help.
Does it work if you just set the Body to the JSON text string “{“x1”:13,“x2”:36,“x3”:89}” using a Text block – as a test?
@luisleon7677qhx9vj
Have you test it on Thunkable Live app? This could be a CORS issue.
CORS can prevent a web API from working on web.
You can check your browser console to see if this is the case. If so, you’ll see an error like this:
“Access to fetch at [URL] from origin ‘https://x.thunkable.com’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. If an opaque response serves your needs, set the request’s mode to ‘no-cors’ to fetch the resource with CORS disabled.”
You can find more information here: https://docs.thunkable.com/blocks/advanced-app-features/web-api/cors-policy