(self, test)
| 138 | |
| 139 | class OAuth2ClientLoginHandler(RequestHandler, OAuth2Mixin): |
| 140 | def initialize(self, test): |
| 141 | self._OAUTH_AUTHORIZE_URL = test.get_url("/oauth2/server/authorize") |
| 142 | |
| 143 | def get(self): |
| 144 | res = self.authorize_redirect() # type: ignore |