Discussions
Webcontact ERROR 500
over 2 years ago by Valentin
Buenas,
Tengo un problema y es que por POSTMAN al mandar los datos me sale 201 OK.
Pero al conectarme a la API por javascript me sale 500.
Les paso el código por si estoy haciendo algo mal.
const contact = {
name: "TEST",
cellphone: "111111111",
email: "[email protected]",
text: "TEST"
}
const options = {
method: 'POST',
mode: 'no-cors',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(contact)
};
fetch('https://tokkobroker.com/api/v1/webcontact/?key=XXXXXXXX', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));