How can I change the route that triggers omniauth from using /auth/:provider to /myapp/auth/:provider ?
I don\'t want to redirect either, because my server will send any
Add the following option in your initializer:
option :request_path, 'https://yourdomain.com/auth/yourprovider/callback'
Restart you app server and try!