|
| 01 Jul 2015 08:35 AM |
local hs=game:service('HttpService') local get=hs:GetAsync('https://api.trello.com/1/boards/2oBZdA9w/lists',true) local tab=hs:JSONDecode(get) for i,v in pairs(tab) do local getal=hs:GetAsync('https://api.trello.com/1/lists/'..v.id..'/cards',true) local tabal=hs:JSONDecode(getal) local NewCard = {} NewCard.name = "Test" local ACEncode = hs:JSONEncode(NewCard) hs:PostAsync("https://api.trello.com/1/lists/"..v.id.."/cards", ACEncode)
Im gettign this error : HTTP 401(HTTP/1.1 401 Unauthorized)
|
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
|
| 01 Jul 2015 08:57 AM |
HttpService:PostAsync(Url,PostData,Enum.HttpContentType.ApplicationUrlEncoded)
-Ticker of da Tocks | Scripter's Forum Breakfast Club |
|
|
| Report Abuse |
|
|