I am making a Trello system for a hotel. But when I run the script, it pauses and doesn’t do anything. I am using @nstrike159 's API for this.
I’ve tried several Youtube videos, and all of them haven’t worked. I have the correct token in the script. I have allowed the Roblox API in Trello. I have HTTPS Service enabled. I have tried it both in studio and out.
Here is my code:
local API = require(game.ServerScriptService:WaitForChild('TrelloAPI'))
local board = API:GetBoardID(board name is here but I censored it out)
local list = API:GetListID(list name is here but I censored it out)
while wait() do
local cards = API:GetCardsInList(list)
print(cards)
end
Hmmm it still doesn’t work. I just tried enabling the example script included with the model, but even that one didn’t work. Could it be something with the game?
A: Your board isnt public. API’s requires your board to be public.
B: The api script is outdated. Not really sure about trello because I’ve learned from using RobloxAPI. I usually make a proxy server which makes things really easier.
A proxy sever is your own server you have hosted on glitch or repl.it which you can transfer data. I use it for all my roblox data grabbing. once I request (GET) from roblox it will get the info I need from trello and forward it back to roblox.