(self, state: State)
| 85 | raise ValueError("auth_scheme is empty.") |
| 86 | |
| 87 | def get_auth_response(self, state: State) -> AuthCredential: |
| 88 | credential_key = "temp:" + self.auth_config.credential_key |
| 89 | return state.get(credential_key, None) |
| 90 | |
| 91 | def generate_auth_request(self) -> AuthConfig: |
| 92 | if not isinstance( |