An open API service indexing awesome lists of open source software.

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

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).