(self, test)
| 128 | |
| 129 | class OAuth2ClientLoginHandler(RequestHandler, OAuth2Mixin): |
| 130 | def initialize(self, test): |
| 131 | self._OAUTH_AUTHORIZE_URL = test.get_url("/oauth2/server/authorize") |
| 132 | |
| 133 | def get(self): |
| 134 | res = self.authorize_redirect() # type: ignore |