我有以下有效的 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,所以也许我没有正确设置标题?