{"id":13663846,"url":"https://github.com/bfollington/Trello-Cards-Unity","last_synced_at":"2025-04-25T18:31:23.245Z","repository":{"id":24464498,"uuid":"27867823","full_name":"bfollington/Trello-Cards-Unity","owner":"bfollington","description":"Create Trello cards from Unity3D games, for crash reports, easy high scores, user posts or anything you like..!","archived":false,"fork":false,"pushed_at":"2022-08-28T11:36:31.000Z","size":11,"stargazers_count":42,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-02T07:22:52.975Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bfollington.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}},"created_at":"2014-12-11T11:19:11.000Z","updated_at":"2025-02-27T21:12:36.000Z","dependencies_parsed_at":"2022-08-22T08:20:45.217Z","dependency_job_id":null,"html_url":"https://github.com/bfollington/Trello-Cards-Unity","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bfollington%2FTrello-Cards-Unity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bfollington%2FTrello-Cards-Unity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bfollington%2FTrello-Cards-Unity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bfollington%2FTrello-Cards-Unity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bfollington","download_url":"https://codeload.github.com/bfollington/Trello-Cards-Unity/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250872063,"owners_count":21500758,"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-02T05:02:38.777Z","updated_at":"2025-04-25T18:31:23.195Z","avatar_url":"https://github.com/bfollington.png","language":"C#","readme":"Trello Cards For Unity\n==================\n\n[![Twitter](https://img.shields.io/twitter/follow/vivavolt?label=%40vivavolt\u0026style=flat\u0026colorA=000000\u0026colorB=000000\u0026logo=twitter\u0026logoColor=000000)](https://twitter.com/vivavolt)\n[![Donate (ETH)](https://img.shields.io/badge/Donate-(ETH)-f5f5f5?style=flat\u0026colorA=000000\u0026colorB=000000)](https://blockchain.com/eth/address/0x981e493b795A7a28c43Bf8d7a8E125C419435Fa7)\n[![Donate ($)](https://img.shields.io/badge/Donate-($)-f5f5f5?style=flat\u0026colorA=000000\u0026colorB=000000)](https://ko-fi.com/vivavolt)\n![Language](https://img.shields.io/github/languages/top/bfollington/Trello-Cards-Unity?style=flat\u0026colorA=000000\u0026colorB=000000)\n![License](https://img.shields.io/github/license/bfollington/Trello-Cards-Unity?style=flat\u0026colorA=000000\u0026colorB=000000)\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```cs\nusing UnityEngine;\nusing System.Collections;\nusing MiniJSON;\nusing System.Collections.Generic;\nusing Trello;\n\npublic 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\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.\n","funding_links":["https://ko-fi.com/vivavolt"],"categories":["C\\#","Trello"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfollington%2FTrello-Cards-Unity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbfollington%2FTrello-Cards-Unity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfollington%2FTrello-Cards-Unity/lists"}