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 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"
}