0
votes
0answers
195 views

undefined method `each' for #<StoreController:0x1eb39fc>

UPDATE: it's fixed. For reasons beyond the scope of normal human understanding - probably because some early parts of this app were written when i was a Nuby - ApplicationController had 'include ...
6
votes
1answer
772 views

Sinatra app using omniauth gets Rack::Protection::SessionHijacking in ie9

I have a Sinatra app, that uses omniauth which constantantly gets this error attack prevented by Rack::Protection::SessionHijacking when I try and log in (using a google account). It works fine in ...
3
votes
2answers
717 views

override “/auth/identity”-page of omniauth identity

I'm using omniauth without devise for authentication, as I like it's simplicity. In addition to omniauth-facebook I use omniauth-identity to offer email/pw-authentication. The railscast on ...
1
vote
0answers
355 views

How to inject http_authorization headers using omniauth and oauth2 in consumer so the authentication occurs in provider?

I'm building an ecomm service using Spree which uses Devise, it contains all the data from our users, but we are using it as a service only, via APIs, so we have an application (rails 3.1), the ...
1
vote
1answer
690 views

Using DataMapper as Padrino session store

I was able to make Rack::Session::DataMapper, Padrino and Omniauth work together. The main goal was to have the same sessions and users in the main app and in the admin section, and to have very long ...
0
votes
1answer
292 views

Issue adding omniauth as middleware

All - I'm using Rails 2.3.5 and Devise. I'm trying to integrate Onmiauth into my system. I'm having issues adding it as middleware. The gem is installed as verfied by 'gem list'. When I try to ...
3
votes
0answers
656 views

Omniauth: How to set authentication provider details at runtime

I have a rails app that is accessible from 2 domains. Facebook requires me to register a facebook app for each of these domains and gives me credentials for each. With Omniauth I can only specify one ...
1
vote
2answers
203 views

Why does OmniAuth pass requests onto the next middleware?

OmniAuth works great, but I've noticed when using it in a Rails v2.3.6 app that it passes requests on to the next Rack middleware, even though it ends up handling the request itself, and responding ...
0
votes
1answer
224 views

How can I persistently overwrite an attribute initialized by Rack::Builder?

I am trying to use OmniAuth to handle the OAuth flow for a small-ish Sinatra app. I can get 37signals Oauth to work perfectly, however I'm trying to create a strategy for Freshbooks Oauth as well. ...
1
vote
1answer
1k views

Rails 3, OmniAuth and passenger throws RoutingError

I'm trying to build a new rails 3 app from scratch using OmniAuth. Currently I just have a completely empty app, where I've added omniauth to the Gemfile, and added a omniauth.rb in ...