我正在尝试使用HTTParty在一个Sinatra应用程序中执行HTTP请求。我可以在Sinatra应用程序之外成功执行相同的请求,但是当它在应用程序中执行时,我总是得到相同的异常:
2013-09-08T16:04:44.738207+00:00 app[web.1]: [2013-09-08 16:04:44] ERROR NoMethodError: undefined method 'status=' for #<HTTParty::Response:0x007f17c050dd70>`
2013-09-08T16:04:44.837777+00:00 app[web.1]: /app/vendor/bundle/ruby/2.0.0/gems/sinatra-1.4.3/lib/sinatra/base.rb:225:in `status'
2013-09-08T16:04:44.936617+00:00 app[web.1]: /app/vendor/bundle/ruby/2.0.0/gems/sinatra-1.4.3/lib/sinatra/base.rb:1080:in `handle_exception!'
2013-09-08T16:04:45.039513+00:00 app[web.1]: /app/vendor/bundle/ruby/2.0.0/gems/sinatra-1.4.3/lib/sinatra/base.rb:1062:in `block in dispatch!'
2013-09-08T16:04:45.139212+00:00 app[web.1]: /app/vendor/bundle/ruby/2.0.0/gems/sinatra-1.4.3/lib/sinatra/base.rb:1041:in `block in invoke'
2013-09-08T16:04:45.238557+00:00 app[web.1]: /app/vendor/bundle/ruby/2.0.0/gems/sinatra-1.4.3/lib/sinatra/base.rb:1041:in `catch'
2013-09-08T16:04:45.338714+00:00 app[web.1]: /app/vendor/bundle/ruby/2.0.0/gems/sinatra-1.4.3/lib/sinatra/base.rb:1041:in `invoke'
2013-09-08T16:04:45.437306+00:00 app[web.1]: /app/vendor/bundle/ruby/2.0.0/gems/sinatra-1.4.3/lib/sinatra/base.rb:1062:in `rescue in dispatch!'
2013-09-08T16:04:45.536146+00:00 app[web.1]: /app/vendor/bundle/ruby/2.0.0/gems/sinatra-1.4.3/lib/sinatra/base.rb:1069:in `dispatch!'
堆栈跟踪的其余部分无关紧要。我肯定请求成功结束。 执行请求的确切代码如下:
@response = HTTParty.get("https://foursquare.com/oauth2/access_token",
:query => {:client_id => settings.client_id,
:client_secret => settings.client_secret,
:grant_type => "authorization_code",
:redirect_uri => settings.redirect_uri,
:code => @code})
看起来Sinatra试图挽救一些异常,然后对我用HTTParty执行的HTTP请求的结果调用status
方法。
因此,了解究竟发生了什么以及为什么Sinatra会这样做会很棒。
非常感谢您的回复。
答案 0 :(得分:3)
问题出在用于存储响应的变量名称中:@response
保留用于Sinatra的内部用途。感谢@eljojo指点我。
https://github.com/sinatra/sinatra/blob/master/lib/sinatra/base.rb#L858