jerimiah-smiggins / smiggins

a social media platform that i made so that means its cool
https://trinkey.pythonanywhere.com
GNU General Public License v3.0
7 stars 5 forks source link

auto post webhooks #184

Closed trinkey closed 3 months ago

trinkey commented 4 months ago

add an option backend to send a request to a webhook when a post by a specified user is made, or by anyone, and it can be configured to include posts/quotes and/or comments

trinkey commented 4 months ago

request format:

{
  "content": null,
  "embeds": [
    {
      "description": "Message content"
      "color": 1234567, // integer of hex color
      "author": {
        "name": "display name",
        "url": "https://trinkey.pythonanywhere.com/u/username" // need to get the base url somehow
      },
      "footer": {
        "text": "Site Name vVersion"
      }
    }
  ]
}