Google loging error using omniauth

Hi all

I am getting this error when i use omniauth for google account. please help me …

Request-URI Too Large

WEBrick::HTTPStatus::RequestURITooLarge

Hi all

I am getting this error when i use omniauth for google account. please help me …

Request-URI Too Large

WEBrick::HTTPStatus::RequestURITooLarge


 WEBrick/1.3.1 (Ruby/1.9.2/2011-02-18) at

ubuntu:3000

That’s a pretty clear error message to me. The URI your are sending is too large. The entire string is larger than 255 characters. Cut it down to a more reasonable size.

B.

It seems to be an issue with how much stuff Google sends back.

We ended up using Mongrel as a work-around in development by adding this

gem "mongrel", "1.2.0.pre2", :group => :development

to the Gemfile.

And we use Passenger in production without any issues with OmniAuth.

Andrew