Oauth 2.0 关于联系人API弃用详细信息

Oauth 2.0 关于联系人API弃用详细信息,oauth-2.0,contacts,google-contacts-api,google-shared-contacts,Oauth 2.0,Contacts,Google Contacts Api,Google Shared Contacts,As contacts api版本2已弃用。我使用的是联系api版本3。 无论下面代码中的任何方法是否已被弃用,我都无法理解。我在那里感到困惑。请带我到这里 ContactsService contactService = new ContactsService("Application Name"); contactService.setAuthSubToken(custDetails.getGoogleCredentionals().getAccessToke

As contacts api版本2已弃用。我使用的是联系api版本3。 无论下面代码中的任何方法是否已被弃用,我都无法理解。我在那里感到困惑。请带我到这里

        ContactsService contactService = new ContactsService("Application Name");
        contactService.setAuthSubToken(custDetails.getGoogleCredentionals().getAccessToken());
        try {
            String url="https://www.google.com/m8/feeds/contacts/"+domain+"/full/"+contactId;
            entry = contactService.getEntry(new URL(url),ContactEntry.class);
        } catch (Exception e1) {
            log.warning("exception in create entry obj"+e1);
        }

你在寻找什么样的方法?查看此页面,了解您可以在Contacts API v3中执行的所有可能方法:我也在使用Google Data API客户端库版本1.47.1。我想知道Google Data Api客户端库是不推荐使用,还是只有其中的一些类不推荐使用。