Reputation: 841
I'm using Google+ iOS SDK to integrate with my app and I would like to know if there is a way to query what people have me in their circles (that is, the people who follow me) or if I can somehow retrieve that information from the people feed that I obtain with the following:
GTLQueryPlus *query = [GTLQueryPlus queryForPeopleListWithUserId:@"me" collection:kGTLPlusCollectionPublic];
Upvotes: 0
Views: 325
Reputation: 47893
That info isn't available. The only supported collections
for people.list are connected
and visible
, both of which are based on people in the authenticated users circles.
There is an open feature request that I think covers such an API method.
Upvotes: 2