Google Update My Contacts



HomeTutorials and GuidesHow to use your Google contacts list on Windows 10

Forgoing Play Services comes with a few caveats: For one, your contacts, SMS, and device data won't be backed up to Google's servers, so be sure you save or sync them to a location outside of your. Apr 01, 2021 Go to Google Contacts and sign into your Google Account. Enter your Google email and password and click “Sign in”. You will be taken the contacts profile of your account. You can also access this page by signing into Gmail and selecting “Contacts” from the “Gmail” menu in the top left corner.

Contacts

There’s a bit of a clash of universes when it comes to connecting the apps and contacts from your smartphone with the services that Microsoft provides on its desktop operating systems. Windows 10 aims to bring both worlds together using interaction with multiplatform tools like Skype, Outlook, or OneNote, as seen in the integrated Phone add-ons wizard that covers all the compatible apps. Now that you have Cortana as a virtual assistant to give you a hand, it just makes sense to transfer your Google contacts list to your PC. Here we explain how to do it using the native Windows application.

What’s the point of synching your contacts to Windows?

Comfort comes first. It’s definitely time for a good cleanup, as since the arrival of Windows 8 there was no other option but to associate your session with your Microsoft profile, which for many people involved using an ancient Hotmail account whose contacts had fallen into oblivion since the times of MSN Messenger. Luckily, there’s no need to delete them, as it’s possible to just hide the contents of your Microsoft account and replace them with a different account. This means you’ll be able to check email addresses, phone numbers, and snail mail directions via the Windows search bar or using Cortana voice commands, and Cortana will even give you notifications for birthdays and calendar events if you also link them to Windows.

Google Update My Contacts Manager

Contacts

How to add a Google account to your Windows contacts

  • To start, you should go into the Windows Contacts app accessible from the applications menu or the search bar. In this menu you’ll see the aforementioned Hotmail/Outlook contacts list. To change it, go to the context menu in the upper section (the ellipsis icon) and click Settings.
  • We’re going to add a Google account. Click Add an account and you’ll get several options, among which you’ll find one for Google. Although this tutorial is focused on that option, you can also do the same thing with iCloud accounts if you use Apple devices.
  • You’ll automatically be taken to a Google login screen where you’ll have to add your account name and password, and will need to grant interaction permissions to Windows.
  • Now we’re going to hide the Hotmail/Outlook contents. To do so, in the Setup menu you went into before you’ll now go to an option called Filter contacts list. In the Show contacts from … section you can untick all the accounts you want to make invisible.

Once the contacts are added, Windows will take charge of using them in associated programs, with a good example being the integrated Calendar tool. When you first open the application (it comes installed on Windows 10 by default), it will ask you to enter one or several email accounts and sync all your events from each. This lets Cortana notify you when specific dates or times approach, and you can enable a box on ModernUI in the Windows start menu to use with the integrated tile system inherited from the previous version of the operating system.

After you've completed the steps in Get Ready to Use the People API you are ready to read and manage contacts.

The following code samples demonstrate how to send a few simple requests:

  • List the user's contacts.
  • Search the user's contacts.
  • Create a new contact.
  • Update an existing contact.
  • Delete an existing contact.
  • Batch create new contacts.
  • Batch update existing contacts.
  • Batch delete existing contacts.

For a full list of methods, see the referencedocumentation.

Only contact based people can be modified. Profile based people read using resource name'people/me'or by an account ID can not be modified.

List the user's contacts

How To Edit Google Contacts

To get a list ofpeople in the user's contacts, use the following code:

Update You can get a list of only changed contacts by setting requestSyncToken to true in the request, and then using the syncToken returned in the response in the syncToken param for the next request. Sync tokens expire after 7 days, and will result in a 410 error. To handle that error, clients should send a request without the syncToken to get the full list of contacts.

Search the user's contacts

To search all of the user's contacts, use the following code:

Protocol

Java

Search does a prefix match of the query with the fields on a person. For example, a person with name 'foo name' matches queries such as 'f', 'fo', 'foo', 'foo n', 'nam', etc., but not 'oo n'.

Create a new contact

To create a new contact, use the following code:

Update an existing contact

To update an existing contact, you mustinclude the person.metadata.sources.etag field in the person for the contact to beupdated to make sure the contact has not changed since your last read. Use the following code:

Protocol

Java

Gmail

Delete an existing contact

To delete an existing contact, use the following code:

Batch create new contacts

To batch create new contacts, use the following code:

Protocol

Java

Batch mutate requests are limited to 10 parallel requests per user.

Batch update existing contacts

To update an existing contact, you mustinclude the person.metadata.sources.etag field in each person for the contact to beupdated to make sure the contact has not changed since your last read. Use the following code:

Batch mutate requests are limited to 10 parallel requests per user.

Batch delete existing contacts

To batch delete existing contacts, use the following code:

Download My Contacts From Google

Protocol

Java

Batch mutate requests are limited to 10 parallel requests per user.