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
The default redirect URI in the userAuth module uses http by default. Google is now enforcing https when creating Redirect URI for OAuth Clients, so the app will throw errors when trying to authorize users if you update the OAuth client config or create a new one in GCloud.
Feature
Maybe do away with the default callback url and require users to explicitly set the REDIRECT_URL in the .env file? It's not well documented in the README that you can already override the default callback URI.
Problem Description
The default redirect URI in the
userAuth
module useshttp
by default. Google is now enforcinghttps
when creating Redirect URI for OAuth Clients, so the app will throw errors when trying to authorize users if you update the OAuth client config or create a new one in GCloud.Feature
Maybe do away with the default callback url and require users to explicitly set the
REDIRECT_URL
in the.env
file? It's not well documented in theREADME
that you can already override the default callback URI.Additional Information
See Google's updated OAuth requirement and validation rules.
The text was updated successfully, but these errors were encountered: