{"id":13786264,"url":"https://github.com/ninpl/UTrelloFix","last_synced_at":"2025-05-11T22:30:54.214Z","repository":{"id":105013265,"uuid":"65855806","full_name":"ninpl/UTrelloFix","owner":"ninpl","description":null,"archived":false,"fork":false,"pushed_at":"2018-03-12T13:01:35.000Z","size":2653,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-12T00:02:09.400Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ninpl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-08-16T21:45:45.000Z","updated_at":"2022-03-02T07:54:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"4aaa3b39-8705-4fe2-99b0-a473e68cf226","html_url":"https://github.com/ninpl/UTrelloFix","commit_stats":null,"previous_names":["moonantonio/utrellofix"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ninpl%2FUTrelloFix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ninpl%2FUTrelloFix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ninpl%2FUTrelloFix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ninpl%2FUTrelloFix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ninpl","download_url":"https://codeload.github.com/ninpl/UTrelloFix/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253645103,"owners_count":21941311,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T19:01:12.677Z","updated_at":"2025-05-11T22:30:50.875Z","avatar_url":"https://github.com/ninpl.png","language":"C#","readme":"UTrello Fix\n==================\n\nThis is a simple C# system for creating Trello cards in your own boards from your Unity app or game. Some use cases may be crash reports, significant events etc.\n\n## Installation\n\nJust drag these `.cs` files into your scripts folder, wherever you like. If you already have `MiniJson` in your project, you may get a namespace conflict. No matter, just delete the one from this repo.\n\n## Usage\n\nGo ahead and grab a Trello Application Key from: https://trello.com/1/appKey/generate. Grab the application key, I'll refer to this as the `key` from now on.\n\nNow head to: https://trello.com/1/connect?key=[yourkeygoeshere]\u0026name=Your%20App\u0026response_type=token\u0026scope=read,write\u0026expiration=never\n\nIn your browser (make sure to fill in your key from just before). You'll be taken to https://trello.com/1/token/approve, and the token code given will be your `token`.\n\n## Example Code\n\n    using UnityEngine;\n    using System.Collections;\n    using MiniJSON;\n    using System.Collections.Generic;\n    using Trello;\n    \n    public class RunAtStart : MonoBehaviour {\n    \n        // Use this for initialization\n        IEnumerator Start () {\n        \n            var trello = new Trello.Trello(YOUR-KEY, YOUR-TOKEN);\n            \n            // Async, do not block\n            yield return trello.populateBoards();\n            trello.setCurrentBoard(\"Your Game\");\n            \n            // Async, do not block\n            yield return trello.populateLists();\n            trello.setCurrentList(\"Achievements\");\n            \n            var card = trello.newCard();\n            card.name = \"Unity Test\";\n            card.desc = \"Description\";\n            card.due = \"11/12/2014\";\n            \n            yield return trello.uploadCard(card);\n            \n            // You can use the helper method to upload exceptions with relevant data\n            try\n            {\n                throw new UnityException(\"Testing\");\n            } catch (UnityException e)\n            {\n                trello.uploadExceptionCard(e);\n            }\n            \n        }\n    }\n\n## Errors\n\nIf you see a `401 Unauthorized` message returnd, it likely means your `key` or `token` are invalid or have expired. Try generate new ones and trying again, if you're having trouble get in touch with me.","funding_links":[],"categories":["Trello"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fninpl%2FUTrelloFix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fninpl%2FUTrelloFix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fninpl%2FUTrelloFix/lists"}