我正在尝试在 bash 脚本中对 github 使用 OAUTH 身份验证。
这个:
curl -u $USER_NAME --silent -d '{"scopes":["repo"]}' \
https://api.github.com/authorizations
工作,结果我得到这样的回应:
"created_at": "2012-09-03T13:02:30Z",
"token": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"updated_at": "2012-09-03T13:02:30Z",
"note_url": null,
"note": null,
"url": "https://api.github.com/authorizations/620793",
"app": {
"url": "http://developer.github.com/v3/oauth/#oauth-authorizations-api",
"name": "GitHub API"
},
"id": 620793,
"scopes": [
"repo"
]
但我需要将"token":
' 值保存在变量中以备将来使用。我怎么能那样做?