Build authentication headers for *token* using *auth_scheme*. Must return a dict with at least an ``Authorization`` key.
(self, token: str, auth_scheme: str)
| 31 | |
| 32 | @abstractmethod |
| 33 | def auth_headers(self, token: str, auth_scheme: str) -> dict[str, str]: |
| 34 | """Build authentication headers for *token* using *auth_scheme*. |
| 35 | |
| 36 | Must return a dict with at least an ``Authorization`` key. |
| 37 | """ |
| 38 | |
| 39 | def resolve_token(self, entry: AuthConfigEntry) -> str | None: |
| 40 | """Resolve the token for *entry*. |
no outgoing calls
no test coverage detected