Mercurial > public > sg101
comparison gpp/gcalendar/oauth.py @ 452:c77359d0d951
Working on #220. Can't test locally, so committing in increments.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 30 Jun 2011 02:13:36 +0000 |
parents | 345825e6dcae |
children | 532b9c6f2482 |
comparison
equal
deleted
inserted
replaced
451:345825e6dcae | 452:c77359d0d951 |
---|---|
47 rsa_private_key=rsa_key) | 47 rsa_private_key=rsa_key) |
48 | 48 |
49 logger.info("received token") | 49 logger.info("received token") |
50 request.session[REQ_TOKEN_SESSION_KEY] = request_token | 50 request.session[REQ_TOKEN_SESSION_KEY] = request_token |
51 | 51 |
52 auth_url = request_token.generate_authorization_url(google_apps_domain=None) | 52 auth_url = request_token.generate_authorization_url() |
53 logger.info("generated auth url '%s'", str(auth_url)) | 53 logger.info("generated auth url '%s'", str(auth_url)) |
54 | 54 |
55 return str(auth_url) | 55 return str(auth_url) |
56 | 56 |
57 | 57 |