{"id":32243951,"url":"https://github.com/acidstudios/angular-trello","last_synced_at":"2026-02-23T14:06:39.222Z","repository":{"id":26406763,"uuid":"29856728","full_name":"acidstudios/angular-trello","owner":"acidstudios","description":"Angular Wrapper for Trello API","archived":false,"fork":false,"pushed_at":"2016-04-23T17:42:45.000Z","size":29,"stargazers_count":11,"open_issues_count":0,"forks_count":9,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-23T19:55:42.440Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/acidstudios.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2015-01-26T10:46:03.000Z","updated_at":"2022-04-22T22:37:44.000Z","dependencies_parsed_at":"2022-08-29T04:20:23.351Z","dependency_job_id":null,"html_url":"https://github.com/acidstudios/angular-trello","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/acidstudios/angular-trello","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acidstudios%2Fangular-trello","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acidstudios%2Fangular-trello/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acidstudios%2Fangular-trello/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acidstudios%2Fangular-trello/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/acidstudios","download_url":"https://codeload.github.com/acidstudios/angular-trello/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acidstudios%2Fangular-trello/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29738083,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-23T04:51:08.365Z","status":"ssl_error","status_checked_at":"2026-02-23T04:49:15.865Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":"2025-10-22T16:19:07.025Z","updated_at":"2026-02-23T14:06:39.216Z","avatar_url":"https://github.com/acidstudios.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"angular-trello\r\n==================\r\n\r\n[![Build Status](https://travis-ci.org/acidstudios/angular-trello.png)](https://travis-ci.org/acidstudios/angular-trello) \r\n[![Dependency Status](https://david-dm.org/acidstudios/angular-trello.png)](https://david-dm.org/acidstudios/angular-trello) \r\n[![Dev Dependency Status](https://david-dm.org/acidstudios/angular-trello/dev-status.png)](https://david-dm.org/acidstudios/angular-trello#info=devDependencies\u0026view=table) \r\n\r\n\u003e Angular.JS module to handle the Trello Api.\r\n\r\n#### Install\r\n```\r\n$ bower install angular-trello\r\n```\r\n\r\n#### Usage\r\n```\r\nvar app = angular.module('providertest', ['trello']);\r\n\r\n\t\t\t//  Configure the Provider\r\n        \tapp.config(['TrelloApiProvider', function(TrelloApiProvider) {\r\n        \t\tTrelloApiProvider.init({\r\n        \t\t\tkey: 'YOUR_KEY',\r\n        \t\t\tsecret: 'YOUR_SECRET',\r\n        \t\t\tscope: {read: true, write: true, account: true},\r\n        \t\t\tname: 'Angular-Trello Test'\r\n        \t\t});\r\n        \t}]);\r\n\r\n        \t// Use into the Controllers\r\n        \tapp.controller('TestCtrl', ['$scope', 'TrelloApi', function($scope, TrelloApi){\r\n        \t\t$scope.boards = [];\r\n        \t\t$scope.test = function () {\r\n        \t\t\tTrelloApi.Authenticate().then(function(){\r\n        \t\t\t\talert(TrelloApi.Token());\r\n        \t\t\t}, function(){\r\n        \t\t\t\talert('no');\r\n        \t\t\t});\r\n        \t\t};\r\n\r\n        \t\t$scope.getMe = function () {\r\n        \t\t\tTrelloApi.Rest('GET', 'members/me').then(function(res){\r\n        \t\t\t\t$scope.boards = res.idBoards;\r\n        \t\t\t\talert(res);\r\n        \t\t\t}, function(err){\r\n        \t\t\t\talert(err);\r\n        \t\t\t});\r\n        \t\t};\r\n\r\n        \t\t$scope.getBoards = function() {\r\n        \t\t\tTrelloApi.boards($scope.boards[0], {}).then(function(res) {\r\n        \t\t\t\talert(res);\r\n        \t\t\t}, function(err) {\r\n        \t\t\t\talert(err);\r\n        \t\t\t});\r\n        \t\t};\r\n        \t}]);\r\n```\r\n\r\n#### Credits\r\nGustavo Barrientos Guerrero \u003cgustavo.barrientos@acidstudios.me\u003e\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facidstudios%2Fangular-trello","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Facidstudios%2Fangular-trello","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facidstudios%2Fangular-trello/lists"}