When not in test mode, after the callback phase I can call env['omniauth.strategy'].acces_token.get('/xyz') to make authenticated requests. In test mode access_token is not set as the normal callback phase code is never called.
At the moment I work around this in my tests using
When not in test mode, after the callback phase I can call
env['omniauth.strategy'].acces_token.get('/xyz')
to make authenticated requests. In test modeaccess_token
is not set as the normal callback phase code is never called.At the moment I work around this in my tests using
but it would be better if this was default behavior.