As of today, we don’t support native Google login. You may leave feedback at Auth0: Secure access for everyone. But not just anyone. for this feature. (Relevant note from one of our product managers is here.)
As a side note, if you want to mix Universal Login with embedded flows (E.g. Facebook Native), you may want to hide the Auth0’s hosted login page and redirect the user to Google’s login page directly for authentication. Skipping the hosted page is possible by passing the connection parameter.
For example, if you were implementing this with Swift for iOS, you may use the sample on this link. I’m taking the code below for quick reference.
Auth0
.webAuth()
.connection("google-oauth2")
.audience("https://YOUR_DOMAIN/userinfo")
.start { result in
switch result {
case .success(let credentials):
print("Credentials: \(credentials)")
case .failure(let error):
print(error)
}
}