Subclasses must override this to return their OAuth consumer keys. The return value should be a `dict` with keys ``key`` and ``secret``.
(self)
| 464 | return url + "?" + urllib.parse.urlencode(args) |
| 465 | |
| 466 | def _oauth_consumer_token(self) -> Dict[str, Any]: |
| 467 | """Subclasses must override this to return their OAuth consumer keys. |
| 468 | |
| 469 | The return value should be a `dict` with keys ``key`` and ``secret``. |
| 470 | """ |
| 471 | raise NotImplementedError() |
| 472 | |
| 473 | async def _oauth_get_user_future( |
| 474 | self, access_token: Dict[str, Any] |
no outgoing calls
no test coverage detected