0

我知道我可以使用 People API 来检索人员连接

ListConnectionsResponse response = peopleService.people().connections().list("people/me").execute();
List<Person> connections = response.getConnections();

就像这里解释的那样

但我很想检索只使用我的应用程序的朋友列表。如何仅检索正在使用我的应用程序的人连接(仅限我的应用程序用户)?

4

1 回答 1

0

你不能。people.connections.list API 不支持这样的功能。您将必须查询用户的所有联系人(当然是在他们的许可下),并根据您现有的用户群检查他们。

于 2016-10-16T17:29:12.707 回答