Questions tagged [google-people-api]

The People API lets you list and manage the authenticated user's Contacts and retrieve profile information for authenticated users and their contacts.

The people information that the People API retrieves is merged from various sources, depending on the following conditions:

  • Public Google profile data Always.
  • Google Apps domain profile data The domain admin has enabled external contact and profile sharing of domain-scoped data.
  • The authenticated user's private profile information One of the profile scopes has been granted.
  • The authenticated user's contacts The contacts scope has been granted.
528 questions
0
votes
1 answer

Is updating person data supported of Google People API v1?

Using the following Windows 10 x64 Microsoft Visual Studio 2015 Community Edition Targeting Dot Net Framework 4.6 Installed Google.Apis.People.v1 via NuGet (It installed all its dependencies) I am able to list the users contacts by…
0
votes
1 answer

Find all Google+ user profiles

Using the Google+ API (people, search method), is it possible to iterate through all Google+ user profiles, i.e., is there a query string that matches all profiles?
0
votes
1 answer

People api filter contacts

If I understand it correctly Google recommend to use the people api instead of the contacts api if you only need read only access. I'm looking for an option to search for contacts on name or company is this possible with the people api or is this…
0
votes
1 answer

How to read the contact data as returned by the Google People API using PHP

I am new to the google API and would like to use the People API for obtaining all the contacts of a user. It works, I can authenticate the user and I call the People API as follows: $contacts =…
-1
votes
1 answer

Google Contacts API - Regarding Deprecation of Contacts API and Remove API's

We have come across the update that Contacts API is getting deprecated but the old APIs are still working fine. Can you please let us know when will the old API's remove? enter image description here
-1
votes
1 answer

Null reference exception on Person object in Google People API

I am trying to add a contact to my Google contacts account. This is the code: // Create new contact Google.Apis.PeopleService.v1.Data.Person person = new Google.Apis.PeopleService.v1.Data.Person(); Name chef = new…
-1
votes
1 answer

Google people API not able to fetch emailAddresses

I am writing a desktop app that needs to authenticate a google user and fetch his email id. So far with the quickstart example, I am able to authenticate but I am having a hard time fetching user email address. config, err :=…
shailesh
  • 75
  • 1
  • 10
-1
votes
1 answer

Invalid token format google people

I use google api people for view google contact in php. I took this example https://github.com/googleapis/google-api-php-client/blob/master/examples/simple-file-upload.php and an api quickstart.php I have the error message : "Invalid token format",…
-1
votes
1 answer

App Approval for SMS and Call log Permission

I All, I have created a very simple app for Auto SMS reply. The main objective of this application is to automatically send back a SMS when someone is unavailable to read or respond to that SMS. The main issue is that It's not getting approved on…
Gkapoor
  • 840
  • 1
  • 13
  • 27
-1
votes
1 answer

Do I need to add every test user to users list for unverified app in google developer console?

I have created a google account to access People API Contacts using Nodejs app. My app is in testing phase (so user limit is 100). I am able to access contacts of two other google accounts using my app but not more than that Gives error 403. So…
sandy
  • 35
  • 10
-1
votes
1 answer

Google People API createContact (429 Resource has been exhausted (e.g. check quota))

Google contacts contains 25,000 contacts. When I try to create new contact via Google People API, the response contains 429 errors with the message: "Resource has been exhausted (e.g. check quota)". How to increase the contacts limit without using…
-1
votes
1 answer

How to get email addresses while fetching google contacts in angular 10

I am trying to get email of google contacts using people API and oAuth2.0. I am able to get all data except email. Any Suggestions app.module.ts import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from…
-1
votes
1 answer

Exporting recaptcha key to mobile application

I am exporting all the data from my website to a mobile application. So, is there a way that I could use the same recaptcha keys for my mobile application that I am already using on my site?
-1
votes
1 answer

Google People API - How to get a user profile photo of a certain size, if it is not .jpg but .png

Good day. Tell me, please, is it possible to reduce the profile photo of the user, if it is .png, and not .jpg The fact is that the site has authorization through social networks, during authorization, we get a photo of the user, which we then use…
-1
votes
2 answers

how can i post json to google people.api

by creating an contact, i always get the answer Invalid JSON payload received. Unknown name my strJson is { "names": [ { "familyName": "NN" } ] } Set web_HTTP = CreateObject("WinHttp.WinHttpRequest.5.1") …
R L
  • 55
  • 8
1 2 3
35
36