Tagged Questions
1
vote
0answers
18 views
Rails route namespaced in omniauth
I have this in routes.rb:
namespace :api do
namespace :v1 do
...
devise_for :users, constraints: { format: :json },
:controllers => { :omniauth_callbacks => "auths" }
...
...
1
vote
1answer
27 views
Routing Test Fails with Matched Route
I have this line of code in my routes
namespace :api, defaults: {format: 'json'} do
namespace :v1 do
match '/auth/:provider/callback', to: 'sign_in#authenticate'
end
end
And my test as
...
1
vote
0answers
273 views
Devise/Omniauth test failing: No route matches {:controller=>“omniauth_callbacks”, :action=>“passthru”, :provider=>:facebook}
I am using Devise 2.2.0 and omniauth 1.1.1 under rails 3.2.11.
I have a test on an un-authenticated (e.g. no "before_filter :authenticate_user!") controller called "HomepageController" with an action ...
0
votes
0answers
91 views
Setting Devise omniauth_path_prefix doesn't work
I'm working on a Rails-based API. I recently started attempting to version it. (I'm using the Versionist gem, in case it matters) One version ('v2') uses Devise and Omniauth to authenticate users ...
0
votes
2answers
149 views
Omniauth Custom rails routes
How could I map this action
match '/auth/:provider/callback', to: 'sessions#create'
which gets called via
<b><%= link_to "Sign in with Facebook", "/auth/facebook", id: "sign_in" ...
0
votes
1answer
87 views
Rails OmniAuth failing signin routes production ENV
I have an app which you can log into using facebook. This uses Omniauth and koala which all works nicely in developement ENV.
However, in production mode deployed to a subURI, my action and routes ...
3
votes
2answers
549 views
Rake routes not showing the route, but it exists when hardcoded
I'm using Devise and Omniauth for my login process. For some reason, I can access the route "users/auth/facebook" or "users/auth/twitter" just fine. But they don't show up when I do rake routes, so I ...
1
vote
0answers
93 views
The RESTful Way to Write the routes.rb for OmniAuth
Currently I set the config/routes.rb for OmniAuth as follows:
match "/auth/:provider/callback" => "sessions#callback"
match "/logout" => "sessions#destroy", :as => :logout
Are there any ...
3
votes
1answer
469 views
Configuring routes in devise when only using omniauth for authentication
I have built an application which allows a user to authenticate against Active Directory using omniauth-ldap. If this is a new user, the successful authentication creates a user for them based on ...
0
votes
1answer
184 views
Devise no session routes on :token_authenticatable [closed]
I use token authentication in Devise (I think; using omniauth-facebook). Earlier this week, I had trouble getting my routes without the "token" option. But now, the token-auth module is still there, ...
1
vote
1answer
259 views
remapping omniauth paths for sinatra
I want to keep my sinatra code organized so I put my auth code in it's own app in my config.ru like so:
map "/" do
run Main
end
map "/auth" do
run Auth
end
The problem is omniauth sets up ...
4
votes
1answer
590 views
No route matches “/oauth/authorize”
I've started integrating Omniauth 1.0 into my Rails/Authlogic application and I get a route error when I try to access localhost:3000/auth/facebook.
Are we supposed to create a custom route for each ...
0
votes
2answers
251 views
Omniauth can't find route
I'm trying to implement Omniauth with my Rails 3 app. I followed the tutorial from the Railscast episod 205, but can't get it to work. When I call the '/auth/twitter' (it doesn't work with any ...
13
votes
1answer
1k views
Devise (or OmniAuth) appending “#_” to URL after sign in
I'm using Devise and OmniAuth (Facebook) in a Rails 3 app. I just started noticing this behavior recently.
When a user signs in, he is redirected to his dashboard, however, the characters "#_" are ...
1
vote
2answers
565 views
Devise Routing Error on Gem Update (Rails 3, Devise + Omniauth)
I am using Devise + Omniauth (Facebook) and recently updated my gems (Rails 3.0.5, Ruby 1.9.2). Upon starting my app server the following line in routes.rb:
devise_for :users, :controllers => { ...
0
votes
1answer
265 views
rails omniauth and base uri view problem
When I deploy my rails app to production I set: RailsBaseURI /my_app so that I can have:
mydomain.com/my_app as the location of my rails app. I've setup omniauth as my provider for authenticating. ...
2
votes
1answer
483 views
rails omniauth, routes, link_to, and base_uri
I've started using omniauth in a project but having some issues in production vs. development. In production my RailsURI is /myApp and in development it's just /
In my templates I use <%= link_to ...
2
votes
1answer
3k views
Problem with Routes using Devise and Omniauth
I am trying to get OAuth and Devise working together but I get Controller::RoutingError (No route matches "/users/auth/facebook/callback"): when trying to auth via Facebook.
Weirdly, the problem ...
7
votes
2answers
5k views
OmniAuth doesn't work with Route Globbing in Rails3
I am trying to follow the Railscast 241 Simple OmniAuth and it works fine unless I have Route Globbing at the end of /config/routes.rb:
match '*uri' => "posts#index"
If I request /auth/twitter ...
3
votes
2answers
2k views
Create named routes for OmniAuth in Rails 3
After having watched Ryan's excellent Railcast Simple OmniAuth, I've managed to implement authentication in my app.
Everything is working fine, but in my view I have links that look like this:
...