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
I've added devise_token_auth routes, but they don't create POST callbacks. Docs say that callback has get or post method, but in my application is only GET. I've tried to manually create POST route for callback, but it hasn't worked and I'm not sure if it is even correct solution. Does anyone have any idea?
The text was updated successfully, but these errors were encountered:
Uh same here. The only route I get is GET /omniauth/:provider/callback(.:format) devise_token_auth/omniauth_callbacks#redirect_callbacks. I'm running 0.1.37. Is it supposed to work like that or we're both doing something wrong?
I made it work, by manually adding POST route with the callbacks to the routes.rb file. After it I've received a few other small errors, but they wasn't hard to fix. Finally I've decided to build my authentication system using other gem.
I've added devise_token_auth routes, but they don't create POST callbacks. Docs say that callback has get or post method, but in my application is only GET. I've tried to manually create POST route for callback, but it hasn't worked and I'm not sure if it is even correct solution. Does anyone have any idea?
The text was updated successfully, but these errors were encountered: