Created
March 28, 2021 10:58
-
-
Save shoumoji/cb7f69beeb35dbc42d3c648e432e4d04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const webhooksUrl = '<discord webhookのURL>' | |
| function submitForm(e) { | |
| let formResponses = e.response.getItemResponses(); | |
| // フォームの上から何番目の質問の解答を入れるか | |
| // 詳しくは https://www.yukibnb.com/entry/form_responses 参照 | |
| let content = formResponses[1].getResponse(); | |
| sendObject = { | |
| "content" : content | |
| }; | |
| let options ={ | |
| 'method' : 'POST', | |
| 'contentType': 'application/json', | |
| 'payload': JSON.stringify(sendObject) | |
| }; | |
| UrlFetchApp.fetch(webhooksUrl, options); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment