As of 2013-05-16, you can generate API Access Tokens via the Web UI or via the GitHub API. All other authorization methods is deprecated.
-
Account Settings -> Personal access tokens -
"Generate new token" under "Personal access tokens" -
For "Token description" you should give it a meaningful name, Example: sublime gist
-
Under "Select scopes" you can just select
gist
-
或者直接点击下面链接 (已预设信息): https://github.com/settings/tokens/new?scopes=gist,&description=SublimeText+2/3+Gist+plugin
Paste the token in the settings section under the token option.
url
中的空格符使用
+
代替.
Here's a command you can run from your terminal to generate a token via curl:
curl -i -u USERNAME https://api.github.com/authorizations --data '{"scopes":["gist"],"note":"SublimeText 2/3 Gist plugin"}'
Where USERNAME
is your Github username. Save the token generated and paste it in the settings section under the token option.
If OTP is enabled on your account, this will return 401 error code, use:
curl -i -u USERNAME -H "X-GitHub-OTP: OTPCODE" https://api.github.com/authorizations --data '{"scopes":["gist"],"note":"SublimeText 2/3 Gist plugin"}'
Where OTPCODE
is the code your authenticator app shows you.
摘取至: https://github.com/condemil/Gist/blob/master/README.md