如何从 twitter.com 捕获 **http 响应**? (红宝石 + 推特宝石)
我提出了一个问题 如何捕获来自推特.com? ( ruby + twitter gem) 了解我的更新是否成功。它工作正常......
但我想知道如何捕获 <我的 ruby 代码中存在strong>HTTP 响应代码和错误?
oauth = Twitter::OAuth.new('consumer token', 'consumer secret')
oauth.authorize_from_access('access token', 'access secret')
client = Twitter::Base.new(oauth)
response = client.update('Heeeyyyyoooo from Twitter Gem!')
I opened a question how can I capture response from twitter.com? ( ruby + twitter gem) to know if my update was successful. It is working fine...
But I would like to know how I can capture HTTP Response Codes and Errors inside my ruby code?
oauth = Twitter::OAuth.new('consumer token', 'consumer secret')
oauth.authorize_from_access('access token', 'access secret')
client = Twitter::Base.new(oauth)
response = client.update('Heeeyyyyoooo from Twitter Gem!')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用安装了 firebug 插件的 Firefox,它会显示 http 响应其“NET”选项卡上的代码。
或者您需要在您的应用程序内执行此操作吗?
If you use firefox with the firebug addon installed, it displays http response codes on it's "NET" tab.
Or do you need to do this from within your app?