在rails中为多个用户配置Twitter应用程序

时间:2015-09-01 10:05:28

标签: ruby-on-rails ruby

我想在rails中创建一个twitter应用程序并为多个用户配置它。但我不确定我在配置中要做什么。我在twitter控制器中的配置代码是

Twitter::REST::Client.new do |config|
config.consumer_key = 'xxxxxxx'
config.consumer_secret = 'xxxxxxx'
config.oauth_token = 'xxxxxx'
config.oauth_token_secret = 'xxxxxxxxx'
end

1 个答案:

答案 0 :(得分:0)

两个值forceconsumer_key都是特定于应用的,您需要在整个应用中使用这两个值。

另一方面consumer_secretoauth_token是特定于用户的,这意味着您使用当前用户返回的oauth令牌提供它们(并且您的个人oauth令牌)。

您可以在Twitter Developers: Obtaining access tokens找到更多信息。