RoProxy

A Discord webhook proxy passthrough for roblox.

Setup

Your port and endpoint are in the config.json, make sure both app.py and config.json are in the same folder.

{
  "port": 80,
  "endpoint": "webhook"
}

If you want just to post directly to the ip and port with no /webhook or any other endpoint leave no text in the quotes for endpoint.

DO NOT INCLUDE A / AT THE BEGINNING OF THE ENDPOINT CONFIG.

YES: "webhook", "subdirectory/webhook"

NO: "/webhook", "/subdirectory/webhook"

Demo

Post to: http://<your-server-ip>:<your-port (default: 80)>/<your-endpoint (default: webhook)>

Your payload should look something like this:

{
  "payload": {
      "content": "Cont Test",
      "embeds":[
         {
             "fields": [
                 {
                    "name": "Field name.",
                    "value": "Field value.",
                    "inline": false
                 }
             ]
         }
     ]
  },

  "payloadurl": "YOUR-WEBHOOK-URL"
}

Lua Demo

local Data = {
    ["payload"] = {
        ["content"] = "Cont Test",
        ["embeds"] = {
            ["fields"] = {
                {
                    ["name"] = "Field name",
                    ["value"] = "Field value",
                    ["inline"] = false
                }
            },
        },
    },
    ["payloadurl"] = "YOUR-WEBHOOK-URL"
}
GitHub - PythonSerious/RoProxy: Discord Webhook Proxy for Roblox payloads.
Discord Webhook Proxy for Roblox payloads. Contribute to PythonSerious/RoProxy development by creating an account on GitHub.