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
We've been receving lots of errors like the following one in the last hour
File lib/ueberauth/strategy/twitter/oauth.ex line 20 in Ueberauth.Strategy.Twitter.OAuth.access_token/3 (ueberauth_twitter) args
File lib/ueberauth/strategy/twitter.ex line 29 in Ueberauth.Strategy.Twitter.handle_callback!/1 (ueberauth_twitter)
File lib/ueberauth/strategy.ex line 307 in Ueberauth.Strategy.run_callback/2 (ueberauth)
File lib/my_project_web/controllers/frontend/auth_controller.ex line 1 in MyProjectWeb.Frontend.AuthController.phoenix_controller_pipeline/2 (my_project)
File lib/phoenix/router.ex line 288 in Phoenix.Router.__call__/2 (phoenix)
File lib/plug/error_handler.ex line 64 in MyProjectWeb.Router.call/2 (my_project)
File lib/my_project_web/endpoint.ex line 1 in MyProjectWeb.Endpoint.plug_builder_call/2 (my_project)
File lib/my_project_web/endpoint.ex line 1 in MyProjectWeb.Endpoint.call/2 (my_project)
The first argument to this function is a token, that is set in the session during the request phase, which was nil. Any idea how this could have happened?
The text was updated successfully, but these errors were encountered:
In my case, I got this error in the logs, and it turns out during testing, I enter the auth URL in the browser, and Safari decides to show an autocompletion of the callback URL, while also making the http call. This leads to invalid token, and an exception show on the server logs.
It's a red herring probably, but would be great to handle such cases gracefully as well.
We've been receving lots of errors like the following one in the last hour
The first argument to this function is a token, that is set in the session during the request phase, which was
nil
. Any idea how this could have happened?The text was updated successfully, but these errors were encountered: