APIキーを取得する
githubのSettingからAPIトークンを取得する方法がわからなかったのでhelpを参照した所、次の方法が見つかった。
$ curl -u 'username' -d '{"scopes":["repo"],"note":"Help example"}' https://api.github.com/authorizations
usernameの部分を自分のアカウント名に変更して上のコマンドを実行する。
パスワードを聞かれるのでgithubアカウントのパスワードを入力する。
すると以下の様な文字列が帰ってくる。
"token":"your_token"のところにAPIトークンが入っているのでこれを使えばいい。
{
"scopes": [
"repo"
],
"token": "your_token",
"app": {
"url": "http://developer.github.com/v3/oauth/#oauth-authorizations-api",
"name": "Help example (API)"
},
"url": "https://api.github.com/authorizations/123456",
"note": "Help example",
"note_url": null,
"id": 123456,
}