Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to pass the authorization token as header information #424

Open
sharathchandramg opened this issue Aug 23, 2023 · 3 comments
Open

How to pass the authorization token as header information #424

sharathchandramg opened this issue Aug 23, 2023 · 3 comments

Comments

@sharathchandramg
Copy link

Hi,
I have my grpc service behind an API gateway. The gateway protects the service using an API key. I am able to use the above using grpcurl as follows:

grpcurl \
-H 'Authorization:<api_key>\
-d '{}' \
<endpoint>.cloudapp.azure.com:8080 \
<namespace>.HelloService/SayHello

I want to load test the same thing using ghz and I am facing issues in calling using the metadata

ghz \
-m '{"Authorization" : "<api_key>"}' \
--call <namespace>..HelloService/SayHello \
-d '{}' \
<endpoint>.cloudapp.azure.com:8080

I keep getting the error

rpc error: code = Unauthenticated desc = unexpected HTTP status code received from server: 401 (Unauthorized); transport: received unexpected content-type "application/json"
@KeganHollern
Copy link

Also having this issue

@is-jonreeves
Copy link

We are also running into the same issue. Requests work fine with grpcurl but not with ghz

Our Header format is Authorization: Bearer <token>.

@GoToCoding
Copy link

Try ghz --metadata="{\"authorization\": \"Bearer $TOKEN\"}"
It works fine for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants