551 questions
-1
votes
1
answer
85
views
App Script to check if contact exists always returns contact does NOT exist
I am trying to check if a contact exists (by comparing first and last names) to avoid creating duplicate contacts. If it doesn't exist, I want to create the contact.
When I run the code, I do not get ...
1
vote
1
answer
147
views
People API Contacts - GoogleJsonResponseException: Nonmetadata Error
I am new to coding and am attempting to use information in a Google Sheet to create a Google Contact. The code works, but I always get an error. Any help will be greatly appreciated.
Here is my code:
...
0
votes
2
answers
171
views
Unable to Retrieve gender and birthday from Google Identity Provider in Keycloak
I'm using Keycloak with Google as an Identity Provider. While I can successfully retrieve the user's name, email, and profile picture, I am unable to fetch the gender and birthday attributes.
What I’...
1
vote
2
answers
118
views
How to update a Google contact?
I have created a script that reads contact's info from a sheet and create a new contact in Google contacts. It works fine and end by saving in a second sheet the external contact ID, Resource name and ...
0
votes
0
answers
67
views
Updating the primary entry for a google contact using the people API without deleting previous primary entry
I am working on a Google Apps Script project that integrates with the Google People API. My goal is to update a field designated as primary (e.g., primary address). However, I haven't found a way to ...
0
votes
0
answers
87
views
Accessing user phone numbers with Google login for test users
I’m trying to implement Google login in my application and want to access users’ phone numbers.
I’ve created an unverified app in the Google Console, enabled the Google People API, and added the phone ...
1
vote
0
answers
64
views
Syncing Google Contacts between two Google Workspace gmail ids using Google Apps Script
We have written the following code to sync contacts between two gmail ids, such that if a new contact is being added to one email id and the Google Apps Script is run, the new contacts get synced to ...
6
votes
1
answer
81
views
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 ...
1
vote
2
answers
596
views
How to use Google People API in Google Apps Script to fetch and add contacts?
Question:
I'm trying to work with Google Contacts using Google Apps Script and the Google People API. Here's what I need help with:
Fetching contacts from Google Contacts using the Google People API.
...
0
votes
0
answers
52
views
Google Auth access token is becoming invalid, with Incremental Scopes
I am building a flutter mobile application (for IOS and Android platform), i want my users to first do google Signin and then provide incremental scopes (calendar/email) to my application.
But as soon ...
1
vote
1
answer
230
views
People Api has not been used in this project
I'm trying to authenticate with google in a Flutter Web project, and I have something like this
final GoogleSignIn _googleSignIn = GoogleSignIn(
scopes: <String>[
'email',
...
0
votes
0
answers
20
views
Problem use profile google Selenium python
I hope you're well, I've had a problem for 2 days, I'm trying to connect with Selenium to one of my google profiles but I can't; the aim is to fill in a Google Form automatically with Selenium but for ...
0
votes
0
answers
65
views
Inconsistent Results with Google Groups List People API : Missing Groups for Some Users
I'm using the Google Groups List API with the JavaScript SDK to fetch groups for authenticated users. It generally works well, but for some users, it doesn't fetch all their groups. For instance, if a ...
0
votes
0
answers
67
views
Match a user's contacts to subject ID's of other Oauth'd users
When you use Google Oauth (or most other Oauth libraries), you get a sub (subject ID) to uniquely identify this auth'd user. Assuming the right permissions, you can then get this user's Google ...
1
vote
0
answers
139
views
Google Sign-In with Firebase returns 401 when accessing People API to retrieve birthdate in Flutter
I'm implementing Google Sign-In with Firebase in my Flutter app and trying to retrieve the user's birthdate using the Google People API. While the sign-in process works fine, and I get a valid ...