(self)
| 47 | |
| 48 | class OpenIdServerAuthenticateHandler(RequestHandler): |
| 49 | def post(self): |
| 50 | if self.get_argument("openid.mode") != "check_authentication": |
| 51 | raise Exception("incorrect openid.mode %r") |
| 52 | self.write("is_valid:true") |
| 53 | |
| 54 | |
| 55 | class OAuth1ClientLoginHandler(RequestHandler, OAuthMixin): |
nothing calls this directly
no test coverage detected