Ruby基本身份验证

时间:2014-07-13 18:14:14

标签: ruby authentication twitter

我想构建一个应用程序,它将使用基本身份验证方法向twitter搜索api发出请求。在我的搜索中,我使用rest-client软件包看到了以下这段代码:

resource = RestClient :: Resource.new('http://example.com',:user =>'user',:password =>'password')

然而它返回'错误请求:400'

有人可以提供建议吗?

1 个答案:

答案 0 :(得分:0)

近四年前,Twitter禁止对api使用基本身份验证。您需要使用oauth代表用户发出请求

关于授权的twitter api文档是here