pavel7002007

Results 1 comments of pavel7002007

This code helped for me ``` class BaseAuthInterceptor: def __init__(self, token: str): self._token = token def _add_auth(self, client_call_details): metadata = list(client_call_details.metadata or []) metadata.append(("authorization", f"Bearer {self._token}")) return grpc.aio.ClientCallDetails( method=client_call_details.method, timeout=client_call_details.timeout,...