(self)
| 131 | self._OAUTH_AUTHORIZE_URL = test.get_url("/oauth2/server/authorize") |
| 132 | |
| 133 | def get(self): |
| 134 | res = self.authorize_redirect() # type: ignore |
| 135 | assert res is None |
| 136 | |
| 137 | |
| 138 | class FacebookClientLoginHandler(RequestHandler, FacebookGraphMixin): |
nothing calls this directly
no test coverage detected