You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to login with omniauth using facebook I get the following error:
No route matches [GET] "/users/facebook/callback"
Do I need to define the callback somewhere?
My routes:
devise_for :users, controllers: { registrations: "users/registrations", sessions: 'users/sessions' }
devise_scope :user do
root :to => 'devise/sessions#new'
end
# Api name space
namespace :api, defaults: { :format => 'json' } do
namespace :v1 do
mount_devise_token_auth_for 'User', at: 'auth'
end
end
end
The text was updated successfully, but these errors were encountered:
When I try to login with omniauth using facebook I get the following error:
No route matches [GET] "/users/facebook/callback"
Do I need to define the callback somewhere?
My routes:
The text was updated successfully, but these errors were encountered: