Google联系人使用oauth2.0进行导入

时间:2012-04-17 09:40:01

标签: python google-api oauth-2.0 contacts google-api-python-client

使用python和 oauth2.0 导入Google通讯录的可能方法有哪些?

我们成功获得了凭据,我们的应用程序请求访问联系人,但在获取凭据后,我找不到发现联系人api的方法。

所以像:

 from apiclient.discover import build
 import httplib2
 http = httplib2.Http()
 #Authorization
 service = build("contacts", "v3", http=http) 

给我们UnknownApiNameOrVersion例外。 看起来联系人API不在apiclient支持的API列表中。

我正在寻找替代方法。

2 个答案:

答案 0 :(得分:21)

Google Contacts API无法与google-api-python-client库一起使用,因为它是Google Data API,而google-api-python-client旨在与discovery-based APIs一起使用。

您可以在gdata-python-client中使用对OAuth 2.0的原生支持,而不是解决@NikolayFominyh所描述的所有问题。

要获取有效令牌,请按照Google Developers blog post中的说明操作,以获得有关该流程的详细说明。

首先,创建一个令牌对象:

import gdata.gauth

CLIENT_ID = 'bogus.id'  # Provided in the APIs console
CLIENT_SECRET = 'SeCr3Tv4lu3'  # Provided in the APIs console
SCOPE = 'https://www.google.com/m8/feeds'
USER_AGENT = 'dummy-sample'

auth_token = gdata.gauth.OAuth2Token(
    client_id=CLIENT_ID, client_secret=CLIENT_SECRET,
    scope=SCOPE, user_agent=USER_AGENT)

然后,使用此令牌授权您的应用程序:

APPLICATION_REDIRECT_URI = 'http://www.example.com/oauth2callback'
authorize_url = auth_token.generate_authorize_url(
    redirect_uri=APPLICATION_REDIRECT_URI)

生成此authorize_url后,您(或您的应用程序的用户)将需要访问它并接受OAuth 2.0提示。如果这是在Web应用程序中,您只需重定向,否则您需要在浏览器中访问该链接。

授权后,交换令牌代码:

import atom.http_core

redirect_url = 'http://www.example.com/oauth2callback?code=SOME-RETURNED-VALUE'
url = atom.http_core.ParseUri(redirect_url)
auth_token.get_access_token(url.query)

如果您访问过浏览器,则需要将重定向到的网址复制到变量redirect_url

如果您在Web应用程序中,您将能够指定路径/oauth2callback的处理程序(例如),并且只需检索查询参数code即可交换代码一个令牌。例如,如果使用WebOb

redirect_url = atom.http_core.Uri.parse_uri(self.request.uri)

最后使用此令牌授权您的客户:

import gdata.contacts.service

client = gdata.contacts.service.ContactsService(source='appname')
auth_token.authorize(client)

更新(原始答案后12个月):

或者,您可以使用我在blog post中描述的google-api-python-client支持。

答案 1 :(得分:2)

最终解决方案相对容易。

第1步 获取oauth2.0令牌。它在官方文档中有相当的记录: http://code.google.com/p/google-api-python-client/wiki/OAuth2

第2步 现在我们有令牌,但无法发现联系人API。 但你可以发现,在oauth2.0游乐场你可以导入联系人。 https://code.google.com/oauthplayground/

您可以在步骤1中找到您拥有凭据的访问令牌。 要访问联系人API,您必须在参数'Authorization':'OAuth %s' % access_token

之后添加到标题

第3步 现在您必须传递到谷歌库令牌,它将与oauth1.0令牌兼容。 可以通过以下代码完成:

from atom.http import ProxiedHttpClient #Google contacts use this client
class OAuth2Token(object):
    def __init__(self, access_token):
        self.access_token=access_token

    def perform_request(self, *args, **kwargs):
        url = 'http://www.google.com/m8/feeds/contacts/default/full'
        http = ProxiedHttpClient()
        return http.request(
            'GET',
            url,
            headers={
                'Authorization':'OAuth %s' % self.access_token
            }
        )
google = gdata.contacts.service.ContactsService(source='appname')
google.current_token = OAuth2Token(oauth2creds.access_token)
feed = google.GetContactsFeed()