I have an endpoint that requires auth and a specific query parameter that is not proxied from user but needs to be POSTed as specific in configuration in krakend to the endpoint
https://username:pass...@ip.ip.ip.ip:80/api?do=start&Location=one&Key=12345
I am reading and testing documentation https://www.krakend.io/docs/endpoints/ and am unsuccessful
{
"endpoints": [
{
"endpoint": "/v1/test-api",
"method": "POST",
"backend": [
{
"url_pattern": "/api?do=start&Location=one&Key=12345",
"method": "POST",
"host": [
"https://username:pass...@ip.ip.ip.ip"
]
}
]
}
]
}
What is configuration required for a user page load of a krakend endpoint over wan at for example https://krakenurl.com/v1/test-api to trigger krakend to perform POST the auth and query parameters to one specific url endpoint with preconfigured auth and preconfigured parameters https://username:pass...@ip.ip.ip.ip:80/api?do=start&Location=one&Key=12345
Thank you
I have an endpoint that requires auth and a specific query parameter that is not proxied from user but needs to be POSTed as specific in configuration in krakend to the endpoint
https://username:password@ip.ip.ip.ip:80/api?do=start&Location=one&Key=12345
I am reading and testing documentation https://www.krakend.io/docs/endpoints/ and am unsuccessful
{
"endpoints": [
{
"endpoint": "/v1/test-api",
"method": "POST",
"backend": [
{
"url_pattern": "/api?do=start&Location=one&Key=12345",
"method": "POST",
"host": [
"https://username:password@ip.ip.ip.ip"
]
}
]
}
]
}What is configuration required for a user page load of a krakend endpoint over wan at for example https://krakenurl.com/v1/test-api to trigger krakend to perform POST the auth and query parameters to one specific url endpoint with preconfigured auth and preconfigured parameters https://username:password@ip.ip.ip.ip:80/api?do=start&Location=one&Key=12345
Thank you