(self)
| 208 | class="cm"># instead of authorize_redirect. |
| 209 | @gen.coroutine |
| 210 | def get(self): |
| 211 | if self.get_argument(class="st">"oauth_token", None): |
| 212 | user = yield self.get_authenticated_user() |
| 213 | if user is None: |
| 214 | raise Exception(class="st">"user is None") |
| 215 | self.finish(user) |
| 216 | return |
| 217 | yield self.authenticate_redirect() |
| 218 | |
| 219 | |
| 220 | class TwitterClientLoginGenCoroutineHandler(TwitterClientHandler): |
nothing calls this directly
no test coverage detected