Come up with an authentic Ruby stone based on Warden (another self-identifier) ββthat does not support Twitter Oauth as an authentication strategy, BUT Warden. There is a way to use Devise's Warden Twitter Oauth strategy, but I can't figure it out. I use the following block in the dev configuration file:
config.warden do |manager| manager.oauth(:twitter) do |twitter| twitter.consumer_secret = <SECRET> twitter.consumer_key = <KEY> twitter.options :site => 'http://twitter.com' end manager.default_strategies.unshift :twitter_oauth end
But I keep getting all kinds of error messages. Does anyone know how to make this work? I suppose there is something else here (setting up a new link / route to talk to Warden, maybe adding Devise User model attributes, etc.), but I can't figure out what it is. Please help.
source share