我无法使用他们的api将gist上传到github。
我总是得到同样的错误
{ “消息”:“验证失败”, “错误”:[ { “资源”:“要点”, “code”:“missing_field”, “字段”:“用户” } ] “documentation_url”:“https://developer.github.com/v3/gists/#create-a-gist” }
这是我的代码:
{
"description": "the description for this gist",
"public": true,
"user": null,
"files": {
"file1.txt": {
"content": "$formattedConfigText"
},
"file2.txt": {
"content": "$formattedGoogleServices"
}
}
}
curlResponse=$(curl -H "Content-Type: application/json" -X POST -d "$(generate_post_data)" https://api.github.com/gists)
它曾经工作但现在已经停了几天了。 谢谢你的帮助
答案 0 :(得分:2)
从3月19日发布匿名要点已被弃用,请查看GitHub博客的弃用通知:
https://blog.github.com/2018-02-18-deprecation-notice-removing-anonymous-gist-creation/