Differences From Artifact [a0753ce99b]:
- File gluon/contrib/login_methods/oauth20_account.py — part of check-in [eba4a35a21] at 2011-08-08 04:53:38 on branch develop — Added web2py 1.98.2 (user: spiffy, size: 7470) [annotate] [blame] [check-ins using]
To Artifact [fa60d45fe4]:
- File gluon/contrib/login_methods/oauth20_account.py — part of check-in [5e6e1e2c0a] at 2011-11-20 05:28:20 on branch feature/web2py_auth — Upgraded to web2py 1.99.2 (user: spiffy, size: 7471) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
200 201 202 203 204 205 206 |
"You are not authenticated: you are being redirected to the <a href='" + auth_request_url + "'> authentication server</a>",
Location=auth_request_url)
else:
self.session.code = self.request.vars.code
self.accessToken()
return self.session.code
return None
| > | 200 201 202 203 204 205 206 207 |
"You are not authenticated: you are being redirected to the <a href='" + auth_request_url + "'> authentication server</a>",
Location=auth_request_url)
else:
self.session.code = self.request.vars.code
self.accessToken()
return self.session.code
return None
|