I have deployed my first app on render. It involves a post request.
I want to be able to make post requests from an external site. How can I do this?
This is the code I am trying to use.
I am getting a 403 error.
<script>
const myComment = document.getElementById("comment");
const myDisplay = document.getElementById("display");
const myBtn = document.getElementById("myBtn");
myBtn.addEventListener("click", sendComment);
function sendComment() {
let msg = myComment.value;
fetch("https://managementapi.onrender.com/comment", {
mode: "no-cors",
method: "post",
body: JSON.stringify({ comment: msg }),
headers: {
"Content-Type": "application/json; charset=utf-8"
}
})
.then((response) => {
if (response.status === 200) {
console.log("Success.");
myDisplay.innerText = `We received your comment:\n"${msg}"`;
} else {
myDisplay.innerText = "Something went wrong.";
throw Error("Server rejected comment.");
}
})
.catch((err) => console.log(err));
}
</script>