Subclasses must override this to return their OAuth consumer keys. The return value should be a `dict` with keys ``key`` and ``secret``.
(self)
| 479 | return url + "?" + urllib.parse.urlencode(args) |
| 480 | |
| 481 | def _oauth_consumer_token(self) -> Dict[str, Any]: |
| 482 | """Subclasses must override this to return their OAuth consumer keys. |
| 483 | |
| 484 | The return value should be a `dict` with keys ``key`` and ``secret``. |
| 485 | """ |
| 486 | raise NotImplementedError() |
| 487 | |
| 488 | async def _oauth_get_user_future( |
| 489 | self, access_token: Dict[str, Any] |
no outgoing calls
no test coverage detected