https://github.com/tjm/go-trello-example
Example Go Trello Client - Basically selects and displays one of your boards
https://github.com/tjm/go-trello-example
Last synced: 8 months ago
JSON representation
Example Go Trello Client - Basically selects and displays one of your boards
- Host: GitHub
- URL: https://github.com/tjm/go-trello-example
- Owner: TJM
- License: apache-2.0
- Created: 2020-10-21T21:32:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-03T17:41:44.000Z (over 5 years ago)
- Last Synced: 2025-06-08T09:02:51.749Z (about 1 year ago)
- Language: Go
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Golang Trello Example API client
go-trello-example is a [Go](http://golang.org/) example client package for accessing the [Trello](http://www.trello.com/) [API](https://developer.atlassian.com/cloud/trello/guides/rest-api/api-introduction/) using the [TJM/go-trello](https://github.com/TJM/go-trello) module.
## Example
Prerequisites:
* Retrieve your `appKey`: (NOTE: This identifies "you" as the developer of the application)
* Retrieve your (temporary) `token`:
Building:
```bash
go build
```
Running: (using your appKey and token from above)
```bash
export TRELLO_APP_KEY=xxxxxxxxxxxxxxxxxxx
export TRELLO_TOKEN=yyyyyyyyyyyyyyyyyyyy
./go-trello-example
```
## License
Licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).