8
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

TrelloのAPIを使ってみる

Posted at

キーとトークンの取得

  1. trelloにログインする
  2. Developer API Keysの取得
    1. https://trello.com/1/appKey/generate にアクセスする
    2. Keyをメモしておく
  3. Tokenの取得
    1.
https://trello.com/1/authorize?key=<さっき取得したKey>&name=&expiration=never&response_type=token&scope=read,write
```にアクセスする

    2. Allowをクリック
    3. 表示されたトークンをメモしておく

# TrelloのAPIを実際に使ってみる
## ボードにあるリストを取得

https://trello.com/1/boards//lists?key=&token=&fields=name


* BoardIDは```https://trello.com/b/HcoG1vhL/susumu-kun```だったら```HcoG1vhL```
8
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?