OmniAuth and Rails 3.1

Hi guys,
I’ve been struggling with OmniAuth for Twitter for a past few days and
I can’t get it to work with Rails 3.1
I’m not sure if this is a Twitter problem, or an OmniAuth problem.

I create the application on twitter, the steps vary a bit from the
Railscast showing it, but that’s because of a Twitter UI change,
nothing big.
The thing is I get my app registered on Twitter, I get my
consumer_secret and my consumer_key, then I setup my omniauth
initializer with:

Rails.application.config.middleware.use OmniAuth::Builder do
provider :twitter, ‘82I2sVYTqpxB9Pblahblahblah’,
‘VkiJYnbLSN4qs99diwsdjfasweirblahblahblah’
end

Then, I restart my server, browse /auth/twitter and I get an
OAuth::Unauthorized error. This is the server log:
Started GET “/auth/twitter” for 127.0.0.1 at 2011-09-22 20:30:33 -0300

OAuth::Unauthorized (401 Unauthorized):

Rendered
/home/kandalf/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb
(1.2ms)
Rendered
/home/kandalf/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb
(21.8ms)
Rendered
/home/kandalf/.rvm/gems/ruby-1.9.3-preview1/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb
within rescues/layout (25.3ms)

Any help would be very much appreciated.

Thanks a lot in advance.


Leonardo M…
There’s no place like ~

Hi!

Take a look in the omni populus gem:

https://github.com/icelab/omnipopulus

Best Regards,

Everaldo

On Thu, Sep 22, 2011 at 8:57 PM, Everaldo G.
[email protected] wrote:

Hi!
Take a look in the omni populus gem:
https://github.com/icelab/omnipopulus
Hey!
I’ve just tried it and had the same result.
I wonder if twitter might have changed something on their side for
authenticating apps or if is omniauth on it’s transition to 1.0.


Leonardo M…
There’s no place like ~

I remember having had some trouble as well.

Make sure that you use the following in your gem files:

devise: ~=1.4.2
ominauth: =0.2.5 (not 0.2.6 for some reason because that has a
dependency
conflict with another lib)

In your production.rb do something like this at the top:

require ‘pg’
require ‘net/http’
require ‘openssl’
OpenSSL::SSL:VERIFY_PEER = OpenSSL::SLL:VERIFY_NONE

This is a bit of a hack but was the only way for me to get this to work
in
my configuration (after spending half a day investigating)

On Fri, Sep 23, 2011 at 2:51 AM, Leonardo M.
[email protected]wrote:

[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.

On Fri, Sep 23, 2011 at 7:04 AM, Martin W. [email protected]
wrote:

This is a bit of a hack but was the only way for me to get this to work in
my configuration (after spending half a day investigating)
Hi Martin,
That didn’t work for me.
Anywho, it seems to be a twitter issue, because I’m being able to
authenticate with GitHub.
It looks like a nice debugging case for OmniAuth, but I’m not sure if
it worth it, since has been announced big architectural changes for
version 1.0.
Maybe this is fixed there, but I don’t know how long version 1.0 will
take.
Does anyone knows about it?

Thanks a lot in advance.


Leonardo M…
There’s no place like ~