since Google announced that Google+ Sign-in will be fully deprecated in near future, I just want to confirm that I understand we are not using any of its deprecated features.
Currently in our code I can see that we are only using following two classes:
com.google.api.services.oauth2.Oauth2com.google.api.services.oauth2.model.Userinfoplus
Under 1, part of the code we are worried about is
public class Me
which, as far as I understand, addresses plus.me (https://developers.google.com/identity/sign-in/web/quick-migration-guide), which is being deprecated.
Under 2, is this class also being deprecated? It seems like the part (or all) of the Google+ profile is contained in there.
Both classes mentioned above are part of the following library version:
com.google.apis:google-api-services-oauth2:v2-rev77-1.19.0
The version of api-client is:
com.google.api-client:google-api-client:1.19.0
Many thnx
The
Meclass does not appear to be related to theplus.getendpoint. The Path specified in theMe.Getclass iswhich specifies the
userinfoendpoint, rather than theplus.getendpoint.Similarly, although the
Userinfoplussure sounds like it is related to theplusendpoint, the fields in it appear to match theuserinfov2 endpoint. They certainly don't do anything to access theplus.meendpoint directly, anyway.