发送到https://api.github.com/users/username的 GET 请求通过命令行和 URL#text 工作,但使用 HTTPBuilder 失败。
编码:
new HTTPBuilder('https://api.github.com').get(path: '/users/xan', contentType: JSON) // fails
"https://api.github.com/users/xan".toURL().text // works
在命令行上:
# works:
$ curl https://api.github.com/users/xan
为什么?