0

我正在尝试使用 gdata 来获取我网站上用户的联系信息。

到目前为止,我已经做了一个 pip install gdata。

然后我添加了我的views.py

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

我的页面上有一个按钮,但我希​​望如果您单击它,它应该会询问您的权限,然后打开一个带有用户 gmail 联系人的弹出窗口。

我想知道如何实现htat。

到目前为止,在我看来,我有:

@login_required
def activate_user(request, activation_key):

   user = User.objects.get(username=request.user)
   profile = user.get_profile()
   auth_token = gdata.gauth.OAuth2Token(client_id=CLIENT_ID,client_secret=CLIENT_SECRET,scope=SCOPE,user_agent=USER_AGENT)

    APPLICATION_REDIRECT_URI = 'http://127.0.0.1:8000/oauth2callback'
    authorize_url=auth_token.generate_authorize_url(redirect_uri=APPLICATION_REDIRECT_URI)

    return render_to_response('registration/activation_complete.html',{'user': user,'profile':profile}, context_instance=RequestContext(request))

但这无济于事。我没有触摸我的 urls.py 或我的 settings.py 谢谢

4

1 回答 1

0

我最终使用了 javascript API。如果有人需要代码,请告诉我

于 2013-04-10T18:21:28.600 回答