Why my feedback system doesnt work?
Asked by
6 years ago Edited 6 years ago
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
02 | local RS = game:GetService( "ReplicatedStorage" ) |
03 | local Remotes = RS.Assets.Remotes |
04 | local Event = Remotes.ReportInfo |
05 | local TrelloApi = require(game:GetService( "ServerScriptService" ):WaitForChild( "TrelloAPI" )) |
06 | local Board = TrelloApi:GetBoardID( "Reports" ) |
07 | local List = TrelloApi:GetListID( "Requests" , Board) |
10 | Event.OnServerEvent:Connect( function (player, Text, Date) |
11 | local SecondInformation = tostring ( "Sent by: " .. player.Name .. ", date: " .. Date .. ", " ..player.Name.. "'s userId: " .. player.UserId) |
12 | TrelloApi:AddCard(Text, SecondInformation,List, "" , "top" ) |
And here is the error:
2 | 22 : 33 : 40.626 - Stack Begin |
3 | 22 : 33 : 40.627 - Script 'ServerScriptService.TrelloAPI' , Line 300 - method GetBoardID |
4 | 22 : 33 : 40.627 - Script 'ServerScriptService.Scripts.ReportSend' , Line 5 |
5 | 22 : 33 : 40.627 - Stack End |