通过谷歌联系人 API 或人员 API 创建新联系人



是否可以使用 Google 联系人 API或人员 API 创建 Google 联系人?

我在使用谷歌 API 创建新联系人时遇到问题。

我正在搜索几天,找到了以下信息:

1 - 看起来人员 API 包来取代谷歌联系人 API

https://gsuite-developers.googleblog.com/2017/07/google-people-api-now-supports-updates.html

2 - 许多人无法使用 gdata 和 atom 包使用 python 3+ 创建新的联系人。

3 - 按照 Gsuite 的建议显示人员 API

https://support.google.com/a/answer/6103110?hl=pt-BR

我想知道是否有人使用这些谷歌 API 创建新联系人。

是否需要 G Suite 电子邮件?

如何获取访问令牌?

我已经在谷歌云平台上完成了所有设置(启用 API 和 auth2(,我有 json 文件、密钥和客户端 ID

编辑:

我正在设法使用此代码列出我的 50 个联系人,我必须修改块以创建新联系人

from __future__ import print_function
import pickle
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
# If modifying these scopes, delete the file token.pickle.
SCOPES = ['https://www.googleapis.com/auth/contacts']
def main():
"""Shows basic usage of the People API.
Prints the name of the first 10 connections.
"""
creds = None
# The file token.pickle stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
if os.path.exists('token.pickle'):
with open('token.pickle', 'rb') as token:
creds = pickle.load(token)
# If there are no (valid) credentials available, let the user log in.
if not creds or not creds.valid:
if creds and creds.expired and creds.refresh_token:
creds.refresh(Request())
else:
flow = InstalledAppFlow.from_client_secrets_file(
'credentials.json', SCOPES)
creds = flow.run_local_server(port=0)
# Save the credentials for the next run
with open('token.pickle', 'wb') as token:
pickle.dump(creds, token)
service = build('people', 'v1', credentials=creds)
# Call the People API
print('List 50 connection names')
results = service.people().connections().list(
resourceName='people/me',
pageSize=50,
personFields='names,emailAddresses').execute()
connections = results.get('connections', [])
for person in connections:
names = person.get('names', [])
if names:
name = names[0].get('displayName')
print(name)
if __name__ == '__main__':
main()

由于您已经有身份验证来列出联系人,因此您应该能够执行以下操作来创建一个:

newContact = { "names": [{ "givenName": "John", "familyName": "Doe" }] }
result = service.people().createContact(body=newContact).execute()

身体/人中可以存在的东西的完整定义在这里。

最新更新