(self)
| 570 | |
| 571 | class GoogleOAuth2AuthorizeHandler(RequestHandler): |
| 572 | def get(self): |
| 573 | # issue a fake auth code and redirect to redirect_uri |
| 574 | code = "fake-authorization-code" |
| 575 | self.redirect(url_concat(self.get_argument("redirect_uri"), dict(code=code))) |
| 576 | |
| 577 | |
| 578 | class GoogleOAuth2TokenHandler(RequestHandler): |
nothing calls this directly
no test coverage detected