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
スポックテストもこの要点で利用できます
なんで?