I would like to setup an Azure API Gateway that accepts requests for a backend service and simply passes the requests through to the backend with no modification. For example: (-> means it would get routed to)
https://dude.azure-api.net/foo -> https://realapi.mycompany.com/foo
https://dude.azure-api.net/bar -> https://realapi.mycompany.com/bar
etc
I want to use wild cards to set this up so that I don't have to specify every single endpoint in every single API.
This is very, very similar to Use Azure Api Management as a passthrough
however, I have a combination of GET's and POST's so that accepted solution won't work.
Can anyone tell me how to do this?