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
curl -i --header "Authorization: Bearer <TOKEN>" http://demo.lvh.me:3000/auth/me
HTTP/1.1 302 Found
If I remove the /auth/me from dispatchers it works.
The main ideia is, after my app logs in, it will hold the token, and everything it hits the /auth/me path it refreshes the token, everything works if a remove the /auth/me path from dispatch_requests, when I add back the me does not authenticate with the token anymore.
What am I doing wrong?
The text was updated successfully, but these errors were encountered:
There's something happening here I don't know if it's the correct behavior because there's nothing at the docs about it.
I have the following:
Test request:
If I remove the
/auth/me
from dispatchers it works.The main ideia is, after my app logs in, it will hold the token, and everything it hits the
/auth/me
path it refreshes the token, everything works if a remove the/auth/me
path fromdispatch_requests
, when I add back the me does not authenticate with the token anymore.What am I doing wrong?
The text was updated successfully, but these errors were encountered: