function
setup() {
createCanvas(550, 200);
textSize(18);
text(
"Click on the button below"
+
" to send a POST request."
, 20, 40);
postBtn = createButton(
"Post Request"
);
postBtn.position(30, 60);
postBtn.mouseClicked(postRequest);
}
function
postRequest() {
let postData = { id: 1, name:
"Sam"
,
httpPost(api_url,
'json'
, postData,
function
(response) {
text(
"Data returned from API"
, 20, 100);
text(
"The ID in the data is: "
+ response.id, 20, 140);
text(
"The Name in the data is: "
+ response.name, 20, 160);
text(
"The Email in the data is: "
+ response.email, 20, 180);
});
}