(self)
| 559 | |
| 560 | class GoogleOAuth2AuthorizeHandler(RequestHandler): |
| 561 | def get(self): |
| 562 | # issue a fake auth code and redirect to redirect_uri |
| 563 | code = "fake-authorization-code" |
| 564 | self.redirect(url_concat(self.get_argument("redirect_uri"), dict(code=code))) |
| 565 | |
| 566 | |
| 567 | class GoogleOAuth2TokenHandler(RequestHandler): |
nothing calls this directly
no test coverage detected