Can I use GoogleApiClient to connect to my own GAE Endpoints API? Perhaps by adding some kind of special scope?
I know it's probably impossible (after all, my own API isn't Google's) but I'd love to leverage the G+ log in functionality!
Thanks and sorry if this is a stupid question.
final GoogleApiClient.Builder b = new GoogleApiClient.Builder(manager.activity()) .setAccountName(userAccountName) .addConnectionCallbacks(apiConnectionHandler) .addOnConnectionFailedListener(apiConnectionHandler) .addApi(Plus.API) .addScope(Plus.SCOPE_PLUS_PROFILE);
– Creos Sep 14 '14 at 21:58