I'm taking the first step in bringing a classic-ASP app into the 21st century, replacing the existing authentication with fusionauth.
I've got an application working and some users added. If a user logs in with email/password then it properly redirects to my redirect URI (which in this case is an ASP page that then POSTS to http://localhost:9011/oauth2/token" with the client_secret and gets the access_token back just fine. I can also then call http://localhost:9011/oauth2/userinfo and get the userinfo back just fine.)
Once I've added google as a social auth provider and a user attempts to login, the google authentication part happens (user is sent to google and logs in there), but then I'm just stuck on the screen below... never redirected to the redirect_uri or anything.
Also, i noticed if user clicks on create an account it goes to the registration page, which doesn't have a register with google link, even though I've enabled that "create registration" flag in the google settings for my application.
Am I missing something?