Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

HTTP 403(HTTP/1.1 403 Forbidden), why is this happening?

Asked by 6 years ago

I'm using a feedback gui with a webhook, which is why I'm using http, the weird thing is that it works in studio, but only does this error ingame. Any idea why this is happening? Any help would be appreciated.

0
Discord doesn't work anymore on roblox Rare_tendo 3000 — 6y
0
Why? brokenVectors 525 — 6y
0
Oh, I just looked and I realised. If only they didn't ban discord... brokenVectors 525 — 6y
0
Is trello still allowed? brokenVectors 525 — 6y
View all comments (4 more)
0
However, you can still use proxy servers to send messages to discord webhooks Rare_tendo 3000 — 6y
0
Trello is still allowed, yes snewo12 72 — 5y
0
^ i thought this question was dead.. brokenVectors 525 — 5y
0
lol topsporter2007 -4 — 3y

2 answers

Log in to vote
1
Answered by 6 years ago

Roblox doesn't fully support discord anymore, so I moved everything to Trello. Just because I'm nice I'll give you the scripts I now use.

local Trello = "change"
local Key = "change"
local Token = "change"
local http = game:GetService("HttpService")
local get = http:GetAsync('https://api.trello.com/1/boards/'..Trello..'/lists?key='..Key..'&token='..Token,true)
local tab=http:JSONDecode(get)

for _,v in pairs(tab) do
    if v.name:match('TRELLOLISTNAME') then
        boardid = v.id
    end
end

game.ReplicatedStorage.bannary.OnServerEvent:Connect(function(player, plr, text)
    local musget = http:PostAsync('https://api.trello.com/1/cards/?key='..(Key)..'&token='..(Token), http:JSONEncode({["name"]=(plr.Name .. " | " .. plr.userId), ["desc"]=("Feedback " .. text .. "\nSent by: " .. plr.Name), ["due"]=nil,["idList"]=boardid,["urlSource"]=nil}))
end)

Above is an example, feel free to DM me on roblox if you get stuck?

0
is there a link to getting the token? brokenVectors 525 — 6y
0
Trello.com/app-key MachoPiggies 526 — 6y
0
Wait, you have to get it by putting a load of random rubbish in a link and authorising it. If you get the model Adonis and go to the main settings and scroll down to Trello, the link is there. MachoPiggies 526 — 6y
Ad
Log in to vote
0
Answered by 5 years ago

Roblox blocked using HTTP service with discord webhooks. But there is a very popular proxy to get around this. Just replace "discordapp.com" with "discord.osyr.is". I've tested this and it has worked!

Answer this question