Skip to content

Instantly share code, notes, and snippets.

@pixelnerve
pixelnerve / discordWebHook.cs
Created May 13, 2024 11:28 — forked from lot224/discordWebHook.cs
An very basic example of a Webhook in C# to Discord.
using Newtonsoft.Json;
using System.Collections.Generic;
using System.Net.Http;
using System.Text;
namespace discordWebHook
{
class Program
{
private static HttpClient client;