Skip to content

Instantly share code, notes, and snippets.

@takenoco82
Created August 23, 2019 11:36
Show Gist options
  • Save takenoco82/d97b089563b3353285f21222e049d451 to your computer and use it in GitHub Desktop.
Save takenoco82/d97b089563b3353285f21222e049d451 to your computer and use it in GitHub Desktop.
Trello Rest API を実行する

Trello Rest API を実行する

APIを使うための準備

  1. Trelloにログインして (https://trello.com/login)
  2. API Key を取得して (https://trello.com/app-key)
  3. tokenを発行する

ユーザ情報を取得する

/members/{id}?key={key}&token={token}

id: userID or username
key: API Key
token: token

ボード一覧を取得する

/members/{id}/boards?key={key}&token={token}

id: userID or username
key: API Key
token: token
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment