Skip to content

Instantly share code, notes, and snippets.

@fullstackfool
fullstackfool / function.js
Last active September 30, 2022 13:44
AWS Amplify SNS to Discord Webhook
const https = require('https');
// NOT the full url, just the path.
const webhookPath = process.env.WEBHOOK_PATH;
// Anything you like.
const appName = process.env.APP_NAME;
function postRequest(body) {
const options = {