我知道我可以使用 People API 来检索人员连接
ListConnectionsResponse response = peopleService.people().connections().list("people/me").execute();
List<Person> connections = response.getConnections();
就像这里解释的那样
但我很想检索只使用我的应用程序的朋友列表。如何仅检索正在使用我的应用程序的人连接(仅限我的应用程序用户)?