繁体   English   中英

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

[英]Create new contacts through google contacts API or people API

是否可以使用谷歌联系人 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 - 人员 API 按照 Gsuite 的推荐出现

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

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

是否需要 ag 套件电子邮件?

如何获取访问令牌?

我已经在谷歌云平台上完成了所有设置(启用 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()

由于您已经有 auth 工作来列出联系人,您应该能够执行以下操作来创建一个:

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

身体/人的完整定义在 这里

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM