Rails.application.config.middleware.use OmniAuth::Builder do
provider :twitter, ‘MY KEY’, ‘MY SECRET’
end
The server starts up fine - the home page loads. I am on Ruby
1.9.2p180 and Rails 3.0.5 on a Win box.
Thanks for any pointers on what I may be missing here.
Given the error, you’re probably missing a route. The gem does not
provide
automatically provide one (at least, it didn’t when I used it), you’ll
need
to add it to the routes file.
automatically provide one (at least, it didn’t when I used it), you’ll need
to add it to the routes file.
That would be the natural conclusion - missing something in routes.rb
but I checked Ryan B.’ screencast (downloaded his screencast code
and looked in the routes.rb file there) and other Omniauth
documentation and unless I am missing something staring in my face, I
don’t see anything added to routes.rb for this. Per the documentation
you do need to add to routes.rb to handle the callback (/auth/twitter/
callback) but nothing for the initial call to /auth/twitter.
Thanks for thoughts or pointers you can help provide.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.