Inject different fetch_jwks function #387
-
Hi! Is it possible to use a different HTTP client for My problem is that AWS ELB is blocking my requests made from This should also help with #240 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
No.
But you can provide your own
There's nothing to do for #240, following redirects is not intended. |
Beta Was this translation helpful? Give feedback.
-
Hi @panva, Thank you very much for your answer. The way I solved it was:
This way I could tap into the http.Agent used by the fetch_jwks function. To follow the redirects (#240) this wouldn't work, but I suspect doing something with the agent would be the solution. |
Beta Was this translation helpful? Give feedback.
Hi @panva,
Thank you very much for your answer.
The way I solved it was:
This way I could tap into the http.Agent used by the fetch_jwks function. To follow the redirects (#240) this wouldn't work, but I suspect doing something with the agent would be the solution.