google-people

Is there any sample/example available to use Google People API for iOS?

偶尔善良 提交于 2021-02-18 08:11:15
问题 I went through he documentation for Google People API. https://developers.google.com/people/v1/getting-started I couldn't find any help/sample to implement the same for iOS platform. Is there any help available for iOS platform? 回答1: Yes there is a People API client library for iOS. To include it you specify pod 'GoogleAPIClientForREST/PeopleService', '~> 1.3.4' pod 'GoogleSignIn', '~> 4.1.2' in the Cocoapods pod file. No, I havn't found any documentation of the Google People API client

Is there any sample/example available to use Google People API for iOS?

做~自己de王妃 提交于 2021-02-18 08:11:10
问题 I went through he documentation for Google People API. https://developers.google.com/people/v1/getting-started I couldn't find any help/sample to implement the same for iOS platform. Is there any help available for iOS platform? 回答1: Yes there is a People API client library for iOS. To include it you specify pod 'GoogleAPIClientForREST/PeopleService', '~> 1.3.4' pod 'GoogleSignIn', '~> 4.1.2' in the Cocoapods pod file. No, I havn't found any documentation of the Google People API client

People API - QUOTA_EXCEEDED / FBS quota limit exceeded

ぃ、小莉子 提交于 2021-02-17 02:11:30
问题 The google people api page says correctly how to authenticate and list 10 example contacts and everything works perfectly: https://developers.google.com/people/quickstart/python I can authenticate and list 10 perfectly but I'm having an error when trying to create new contacts. The api is returning me the following error: HttpError: <HttpError 429 when requesting https://people.googleapis.com/v1/people:createContact?alt=json returned "Resource has been exhausted (e.g. check quota).". Details:

Google People API listDirectoryPeople is not returning names for any users in the directory

穿精又带淫゛_ 提交于 2021-02-11 12:29:40
问题 The api found here: https://developers.google.com/people/api/rest/v1/people/listDirectoryPeople with a readmask of metadata, names, emailAddresses is not returning names for any of the users in the directory anymore using the interface found on that page. It used to return names this is a change in the last week. Any ideas? 回答1: I opened another post with a related problem. This solution works to me: you have to register to Google Currents in order to get your name for your user. I hope that

Google, people api, how can I create a contact in a group

梦想的初衷 提交于 2021-01-29 09:56:12
问题 With people.createContact I can easily create a contact in myContacts. But how do I create a contact in a special group ?? 回答1: You can create the contact with the method - people.createContact, as you are probably already doing. All you have to change is to specify a membership: "memberships": [ { "contactGroupMembership": { "contactGroupResourceName": "contactGroups/PASTE_HERE_THE_NAME_OF_THE_GROUP" } } ] Have a look at this sample. 来源: https://stackoverflow.com/questions/60000605/google

Adding/updating a Google Contact's photo

故事扮演 提交于 2021-01-28 11:38:48
问题 I am trying to update a Google Contacts contact's photo via URL using Google Apps Script. The below is my attempt. function addContactPhoto (blob) { var image = UrlFetchApp.fetch("http://www.example.com/joe_bloggs.png"); var options = { 'method' : 'put', 'contentType': 'image/png', 'payload' : image.getBlob() }; UrlFetchApp.fetch('https://www.google.com/m8/feeds/photos/media/{userEmail}/{contactID}', options); } I was trying to follow the instructions for the Google Contacts API by sending a

people API google quota limits

泪湿孤枕 提交于 2021-01-28 09:05:44
问题 I'm looking into the People.API this is only for google+ users. Does anyone know How many queries can I ask a day/minutes for free? what are the General Quota limits? How much will it cost to go beyond the threshold? Thanks, 回答1: There are two different People APIs, for both you can see the quotas in the cloud console: Go to the corresponding API link: G+ People API (only works for G+ users) https://console.cloud.google.com/apis/api/plus.googleapis.com/quotas People API (works for all users)

Method: people.get() does not return names

跟風遠走 提交于 2020-08-10 20:26:12
问题 I have a question regarding API: GET https://people.googleapis.com/v1/{resourceName=people/*} When the resourceName = people/account_id and the personFields is 'names' the API returns names only when the account_id has a Google+ account associated with it. For the account_id without associate Google+ account, no names are returned. My application scopes are: https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/contacts https://www.googleapis.com/auth/plus.login Is

Method: people.get() does not return names

痞子三分冷 提交于 2020-08-10 20:24:37
问题 I have a question regarding API: GET https://people.googleapis.com/v1/{resourceName=people/*} When the resourceName = people/account_id and the personFields is 'names' the API returns names only when the account_id has a Google+ account associated with it. For the account_id without associate Google+ account, no names are returned. My application scopes are: https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/contacts https://www.googleapis.com/auth/plus.login Is

Google People API - query parameter 'deleteContacts' not working

吃可爱长大的小学妹 提交于 2020-02-06 08:50:53
问题 There is documented optional query parameter 'deleteContacts' here: https://developers.google.com/people/api/rest/v1/contactGroups/delete It is not working. I have group with two contacts on my test account. I deleted this group with parameter 'deleteContacts' set to true. Group got deleted but contacts remained. I tried official python api client and API explorer found on the documentation page and the results are the same. Any ideas? 回答1: The fix should be live now. Please try again. 来源: