I'd like to use Google's Oauth2 API to login to an application based on an e-mail address. Considering users may not know if their me@mydomain.com is hosted by google, how could I inspect their e-mail address and redirect them to Google Auth via code? For example, on a typical login page you've seen the "login with my google account" button, but if the users doesn't know it's a google account I'd still like to use OAUTH even if they didn't click it.
I've considered a DNS lookup on the MX record, but not sure if that's the cleanest/best approach.
i.e. a typical DNS lookup returns:
mydomain.com MX preference = 10, mail exchanger = aspmx.l.google.com
mydomain.com MX preference = 20, mail exchanger = alt1.aspmx.l.google.com
mydomain.com MX preference = 20, mail exchanger = alt2.aspmx.l.google.com
...