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 Regards, Shyam <http://shyam.heroku.com/> -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Sent from my iPhone On Apr 15, 2011, at 1:05 PM, shyam <shyammohankanojia-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> 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. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
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 On Apr 15, 9:12 pm, Bryan Crossland <bacrossl...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Sent from my iPhone > > On Apr 15, 2011, at 1:05 PM, shyam <shyammohankano...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > 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.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.