Hey there! I tried to make feedback system(report system), but there is an problem in output - 403 HTTP. I dont know how to fix it. I searched in internet but didnt find anything.
P.S. Sorry for my bad English. http and api services is turned on
-- This is server script. I sent report text from client to server using remotes local RS = game:GetService("ReplicatedStorage") local Remotes = RS.Assets.Remotes local Event = Remotes.ReportInfo local TrelloApi = require(game:GetService("ServerScriptService"):WaitForChild("TrelloAPI")) local Board = TrelloApi:GetBoardID("Reports") local List = TrelloApi:GetListID("Requests", Board) Event.OnServerEvent:Connect(function(player, Text, Date) local SecondInformation = tostring("Sent by: ".. player.Name .. ", date: ".. Date .. ", "..player.Name.."'s userId: ".. player.UserId) TrelloApi:AddCard(Text, SecondInformation,List,"","top") end)
And here is the error:
22:33:40.626 - HTTP 403 22:33:40.626 - Stack Begin 22:33:40.627 - Script 'ServerScriptService.TrelloAPI', Line 300 - method GetBoardID 22:33:40.627 - Script 'ServerScriptService.Scripts.ReportSend', Line 5 22:33:40.627 - Stack End