我编写了一个 Groovy 脚本来管理 Github 上的一些组织存储库。直到几周前,当同一个脚本开始失败时,它才运行良好。也许 Github 改变了他们 API 的某些方面?或者,也许我正在做一些愚蠢的事情。我已将问题缩小到这个简化的示例(需要有效的github帐户):
@Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.6' )
import groovyx.net.http.HTTPBuilder
String username = System.console().readLine 'Username: '
char[] password = System.console().readPassword 'Password: '
def github = new HTTPBuilder('https://api.github.com')
github.auth.basic username, password.toString()
def emails = github.get(path: '/user/emails',
headers: ['Accept': 'application/json', 'User-Agent': 'Apache HTTPClient'])
println emails
输出:
$ groovy GithubHttpBuilderTest.groovy
用户名:用户名
密码:
捕获:groovyx.net.http.HttpResponseException:未经授权的
groovyx.net.http.HttpResponseException:
在 groovyx 的 groovyx.net.http.HTTPBuilder.defaultFailureHandler(HTTPBuilder.java:652)未经授权
。 net.http.HTTPBuilder.doRequest(HTTPBuilder.java:508)
在 groovyx.net.http.HTTPBuilder.get(HTTPBuilder.java:292)
在 groovyx.net.http.HTTPBuilder.get(HTTPBuilder.java:262)
在 groovyx .net.http.HTTPBuilder$get.call(Unknown Source)
at GithubHttpBuilderTest.run(GithubHttpBuilderTest.groovy:10)
使用相同的凭据,curl 可以工作:
$ curl -u username https://api.github.com/user/emails
输出:
[
“用户名@example.com”
]
我是否遗漏了有关如何使用 HttpBuilder 对 Github API 进行正确身份验证的内容?
编辑:修复了我的代码中的一个错误,我将
System.console().readPassword
其视为字符串而不是其实际返回类型:char []。哎呀。