Skip to content

Instantly share code, notes, and snippets.

@ewanxdd
Last active January 25, 2018 12:52
Show Gist options
  • Save ewanxdd/b99588f06740ea40f9123d7338c4db48 to your computer and use it in GitHub Desktop.
Save ewanxdd/b99588f06740ea40f9123d7338c4db48 to your computer and use it in GitHub Desktop.
A webhook payload for sending google form through too discord
function onFormSubmit(e) {
var fields = [];
if (e.response.getItemResponses().length < 3) {
return;
}
for (i = 0; i < e.response.getItemResponses().length; i++) {
var response = e.response.getItemResponses()[i];
fields.push({
"name": response.getItem().getTitle(),
"value": response.getResponse(),
"inline": false
});
}
var data = {
"content": 'A new form has been submitted!', //change this line if you so wish
"embeds": [{
"title": "**New form submission** — " + (e.source.getTitle() != null && e.source.getTitle().length > 0 ? e.source.getTitle() : "Untitled Form"),
"type": "rich",
"fields": fields
}]
};
var options = {
method: "post",
payload: JSON.stringify(data),
contentType: "application/json; charset=utf-8",
muteHttpExceptions: true
};
Logger.log("Attempting to send:");
Logger.log(JSON.stringify(data));
var response = UrlFetchApp.fetch("WEBHOOK_URL", options); //Replace webhook url here
Logger.log(response.getContentText());
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment