SortOrder Not Working in Google People List Connections API When Called with requestSyncToken=true
When calling the people.connections.list
API with requestSyncToken=true
, the sortOrder
parameter does not function as expected. Even when a sort order such as LAST_MODIFIED_ASCENDING
or LAST_MODIFIED_DESCENDING
is specified, the returned contacts are not sorted accordingly. This behavior makes it difficult to fetch the most recently updated or edited contacts in a sorted order during synchronization.
FAILED_PRECONDITION: Request failed due to code cache data. on calls to google.people.v1.PeopleService.SearchContacts
I am using the google.people.v1.PeopleService.SearchContacts
API to search Google contacts. I am following the instructions from https://developers.google.com/people/api/rest/v1/people/searchContacts that say to warm up the search cache before using the search API. Every request to warm up the cache fails with the error:
How to get the user’s street address?
This is how I get the user’s consent:
What is meant by “per user” write requests in the Google People API?
If I integrate the Google People API into my Chrome extension, do the “per user” write requests refer to each individual user of the extension or to my Google Cloud Console account?
Can we get a list of “Frequent Contacts” from the Google People API?
I see this question was asked 8 years ago – hoping for a more up to date answer. I know that “Other Contacts” can be retrieved using the API otherContacts.list, and that will usually include Frequent Contacts. But I was wondering if there is a separate API just for Frequent Contacts? I don’t see anything.
How can I get a user google account data?
I’m building an app that requires user age to give user some privilege. I can’t ask user to input his age because he can simply lie. Instead I’m looking into TDS (Trusted Data Sources) to get user age/birthday.