Open
Description
I sometimes get an exception in my logs, "No code received" for my app when running in production, but I can never reproduce it. Does anyone know what might cause a missing_code
"No code received" error to occur?
Here's my config: (client_id
and client_secret
omitted)
config :ueberauth, Ueberauth,
providers: [
google: {
Ueberauth.Strategy.Google,
[
request_path: "/login",
callback_path: "/auth/google/callback",
default_scope: "email profile"
]
}
]
Activity