I'm trying to build a proof-of-concept API gateway to aggregate and centralize several tools exposed via APIs.
Express Gateway fits the bill perfectly for my use case, however I'm not entirely sure how to setup the proxy policy with a CAS (or even if it's possible yet).
The tools I want to aggregate are behind a CAS, so when I try to re-route the requests they fail.
Is it possible to use Express Gateway in such a way?
Maybe I would need to manually setup the headers to be passed through or manually hook up the Basic Authentication policy somehow?