Trello API | Move card to new list

I am trying to move a card from one list to another, but I keep getting this error:

23: 32: 04.273 - PUT https://api.trello.com/1/cards/CardId/idList?key=Key&token=Token : trust check failed, operation completed successfully.

I am using this from a virtual game server via "HttpService", these are the arguments for the POST request (link to screen capture): http://gyazo.com/d9c24682c73973473720119c7a5939f8

The request will look something like this: game: GetService ("HtttpService"): PostAsync ("url", data, HttpContentType (can be left empty))

My question is, is the syntax correct for a PUT request, and if so, what is the idea why I am getting "trust check failed"?

+3


source to share


1 answer


The reason for trust checking is not being performed: ROBLOX disabled it for regular scripts, as it poses a huge security risk to many sites, including ROBLOX. For this reason, they only allow their own scripts to run this.



Short fix (not easy): If you have a website, submit a fetch request to the php page that will send put to trello.

0


source







All Articles