使用gdata-python-client和OAuth2令牌从Google Contacts API中检索所有(其他)联系人吗?

时间:2019-01-30 17:30:23

标签: python google-oauth2 gdata gdata-python-client

在搜寻中列出Gmail / GSuite用户的所有联系人(包括Other)。当前的People API不支持此功能,请注意以下线程:

更深入地研究时,似乎Contacts API仍在起作用,可以通过gdata https://developers.google.com/contacts/v3/

使用

但是,基于以下仓库(https://github.com/google/gdata-python-client),关于使用OAuth2(userIDtokenrefreshToken)实施的文档有限,这是目前的绊脚石阻止以获取Other Contacts

的列表

任何帮助将不胜感激,谢谢!

1 个答案:

答案 0 :(得分:0)

我发现7年前的帖子https://gist.github.com/jorilallo/3686737(?)。在下面的实际示例代码中,我必须对其进行一些修改才能使其正常工作:

import gdata
import gdata.gauth
import gdata.contacts.client
import json
import requests

GOOGLE_CLIENT_ID = 'GOOGLE_CLIENT_ID'  # Provided in the APIs console
GOOGLE_CLIENT_SECRET = 'GOOGLE_CLIENT_SECRET'  # Provided in the APIs console
ACCESS_TOKEN = 'ACCESS_TOKEN' # given from a prior OAuth2 workflow, along with userID and refreshToken
REFRESH_TOKEN = 'REFRESH_TOKEN'

# GData with access token
token = gdata.gauth.OAuth2Token(
    client_id=GOOGLE_CLIENT_ID,
    client_secret=GOOGLE_CLIENT_SECRET,
    scope='https://www.google.com/m8/feeds',
    user_agent='app.testing',
    access_token=ACCESS_TOKEN,
    refresh_token=REFRESH_TOKEN)

contact_client = gdata.contacts.client.ContactsClient()
token.authorize(contact_client)

feed = contact_client.GetContacts()

for entry in feed.entry:
  entry.title.text
  for e in entry.email:
    e.address

# JSON with access token
r = requests.get('https://www.google.com/m8/feeds/contacts/default/full?access_token=%s&alt=json&max-results=50&start-index=0' % (access_token))
data = json.loads(r.text)
print data