Skip to content

Instantly share code, notes, and snippets.

View alessaloisio's full-sized avatar

Alessandro Aloisio alessaloisio

  • Wants to create a startup ❤️
  • Belgium
View GitHub Profile
@alessaloisio
alessaloisio / discord-webhook.js
Created November 14, 2021 11:31 — forked from dragonwocky/discord-webhook.js
js post request example for discord webhooks using the fetch web api
fetch(
'https://discordapp.com/api/webhooks/738983040323289120/mzhXrZz0hqOuUaPUjB_RBTE8XJUFLe8fe9mgeJjQCaxjHX14c3SW3ZR199_CDEI-xT56',
{
method: 'post',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
// the username to be displayed
username: 'webhook',