(
self, access_token: Dict[str, Any]
)
| 839 | ) |
| 840 | |
| 841 | async def _oauth_get_user_future( |
| 842 | self, access_token: Dict[str, Any] |
| 843 | ) -> Dict[str, Any]: |
| 844 | user = await self.twitter_request( |
| 845 | "/account/verify_credentials", access_token=access_token |
| 846 | ) |
| 847 | if user: |
| 848 | user["username"] = user["screen_name"] |
| 849 | return user |
| 850 | |
| 851 | |
| 852 | class GoogleOAuth2Mixin(OAuth2Mixin): |
nothing calls this directly
no test coverage detected