動作する次の Curl コマンドがあります。
curl -H "Authorization:GoogleLogin auth=xxx" http://www.google.com/reader/api/0/user-info
私はget
BubbleWrap HTTPでこれをやろうとしています:
HTTP.get("http://www.google.com/reader/api/0/user-info",
{
:headers => { "Authorization:GoogleLogin auth" => "xxx"}
}) do |response|
puts response
puts response.body.to_str
end
しかし、401 が戻ってきたので、ヘッダーを正しく設定しなかったのでしょうか?