I have a grpc service which gets authorized via JwtToken after reading it from grpc metadata and angular application which calls my grpc service using grpc-web. I login into my angular app using SSO, http header will be having the authorization token. Now how to send this authorization token in http header to my grpc service? Note: grpc-web plugin in Kong is used as http/1.1 to http/2 converter.
Tried to check options read http headers in angular and then set the grpc metadata with authorization header. Looking for options to the above ask.