Differences From Artifact [895fd3ad22]:
- File gluon/contrib/login_methods/linkedin_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: 1536) [annotate] [blame] [check-ins using]
To Artifact [c50499f133]:
- File gluon/contrib/login_methods/linkedin_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: 1537) [annotate] [blame] [check-ins using] [more...]
︙ | |||
43 44 45 46 47 48 49 50 | 43 44 45 46 47 48 49 50 51 | + | result = self.request.vars.verifier and self.api.accessToken(verifier = self.request.vars.verifier ) if result: profile = self.api.GetProfile() profile = self.api.GetProfile(profile).public_url = "http://www.linkedin.com/in/ozgurv" return dict(first_name = profile.first_name, last_name = profile.last_name, username = profile.id) |