markdown 使用curl从cli获取github API令牌

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 使用curl从cli获取github API令牌相关的知识,希望对你有一定的参考价值。

# Get github API token from cli using curl

```shell
# Here's a command you can run from your terminal to generate a token via curl:
# Where $USERNAME is your Github username. 
# Save the token generated and paste it in the settings section under the token option.
curl -v -u $USERNAME -X POST https://api.github.com/authorizations --data "{\"scopes\":[\"gist\"], \"note\": \"Token Description\"}"

# Where OTPCODE is the code your authenticator app shows you.
curl -v -u $USERNAME -H "X-GitHub-OTP: OTPCODE" -X POST https://api.github.com/authorizations --data "{\"scopes\":[\"gist\"], \"note\": \"Token Description\"}"
```

以上是关于markdown 使用curl从cli获取github API令牌的主要内容,如果未能解决你的问题,请参考以下文章

markdown cURL使用JSON.md获取和POST

从文件和 Ember CLI Mirage 中获取内容

将curl安装到PHP cli

markdown 从CLI更改PDF标题

markdown 从CLI快捷方式搜索命令

markdown Python - 从cli调用作业命令