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

2 answers

Log in to vote
1
Answered by 7 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.

01local Trello = "change"
02local Key = "change"
03local Token = "change"
04local http = game:GetService("HttpService")
05local get = http:GetAsync('https://api.trello.com/1/boards/'..Trello..'/lists?key='..Key..'&token='..Token,true)
06local tab=http:JSONDecode(get)
07 
08for _,v in pairs(tab) do
09    if v.name:match('TRELLOLISTNAME') then
10        boardid = v.id
11    end
12end
13 
14game.ReplicatedStorage.bannary.OnServerEvent:Connect(function(player, plr, text)
15    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}))
16end)

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 — 7y
0
Trello.com/app-key MachoPiggies 526 — 7y
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 — 7y
Ad
Log in to vote
0
Answered by 6 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