标签: android google-people firebase-invites
我知道我可以使用People API来检索人员连接
ListConnectionsResponse response = peopleService.people().connections().list("people/me").execute(); List<Person> connections = response.getConnections();
就像explain here
但我很乐意检索仅使用我的应用的朋友列表。 如何只检索使用我的应用程序的人员连接(仅限我的应用程序用户)?
答案 0 :(得分:0)
你做不到。 people.connections.list API不支持此功能。您必须查询用户的所有联系人(当然是他们的许可),并根据您现有的用户群进行检查。