According to Google, they're no longer using the previous SSO mechanism as of this month.
However, I'm not able to get Laravel Socialite working with the new mechanism, which uses a JWT token instead.
I keep getting - perhaps predictably:
`400 Bad Request` response: { "error": "invalid_request", "error_description": "Missing required parameter: code" }
as there's no longer a code being sent through.
I'm using Laravel 8 though I don't see any major changes. I'm happy to paste my code though it's all very standard, just adding stateless() to the Socialite calls.
I'm wondering if it's just known that Socialite doesn't handle the JWT method, and I should just go about building the mechanism myself via the Google API.