I am unable to transform json request body. I am on v3.2.1
The app definition is below.
I don’t think it matters but I am using .NET 5 api. There is no change in the request body using both file or base64 string. I also created templates in a template folder adjacent to apps as well as in root. The app is being loaded and I can tell the routing is correct (modified to wrong route and it won’t hit the endpoint).
"name": "Members API",
"api_id": "1",
"org_id": "default",
"auth_configs": {
"authToken": {
"auth_header_name": "Authorization"
}
},
"definition": {
"location": "header",
"key": "x-api-version"
},
"version_data": {
"not_versioned": true,
"versions": {
"Default": {
"name": "Default",
"use_extended_paths": true,
"paths": {
"ignored": [],
"white_list": [],
"black_list": []
},
"extended_paths": {
"transform": [
{
"path": "members",
"method": "PUT",
"template_data": {
"template_mode": "blob",
"template_source": "ew0KIklEIjp7e2luZGV4IC4gInJlc3VsdCIgImlkIn19LA0KIklEQm9vayI6e3tpbmRleCAuICJyZXN1bHQiICJib29rIn19LA0KIkZpcnN0TmFtZSI6Int7aW5kZXggLiAicmVzdWx0IiAiRmlyc3ROYW1lIn19IiwNCiJMYXN0TmFtZSI6Int7aW5kZXggLiAicmVzdWx0IiAiTGFzdE5hbWUifX0iDQp9",
"input_type": "xml",
"enable_session": false
}
},
{
"path": "/members",
"method": "POST",
"template_data": {
"template_mode": "blob",
"template_source": "ew0KICAidmFsdWUxIjogInt7LnZhbHVlMn19IiwNCiAgInZhbHVlMiI6ICJ7ey52YWx1ZTF9fSIsDQogICJ0cmFuc2Zvcm1lZF9saXN0IjogWw0KICAgIHt7cmFuZ2UgJGluZGV4LCAkZWxlbWVudCA6PSAudmFsdWVfbGlzdH19DQogICAgICAgIHt7aWYgJGluZGV4fX0NCiAgICAgICAgLCAie3skZWxlbWVudH19Ig0KICAgICAgICB7e2Vsc2V9fQ0KICAgICAgICAgICJ7eyRlbGVtZW50fX0iDQogICAgICAgIHt7ZW5kfX0NCiAgICB7e2VuZH19DQogIF0NCn0=",
"input_type": "json",
"enable_session": false
}
},
{
"path": "/members/{id}",
"method": "POST",
"template_data": {
"template_mode": "file",
"template_source": "./templates/transform_test.tmpl",
"input_type": "json",
"enable_session": false
}
}
]
}
}
}
},
"proxy": {
"preserve_host_header": false,
"listen_path": "/members/",
"target_url": "http://host.docker.internal:5000/api/members/",
"strip_listen_path": true
},
"response_processors": [
{
"name": "response_body_transform",
"options": {}
}
],
"active": true
}
(Additionally, I tried to transform xml request to json with transformation that creates json. But this is being ignored and xml is being sent to the api resulting in Http 415 Unsupported. Please note that this isn’t the main issue)
This is the request body.
{
"value1": "value-1",
"value2": "value-2",
"value_list": [
"one",
"two",
"four",
"three"
]
}
And this is the template.
{
"value1": "{{.value2}}",
"value2": "{{.value1}}",
"transformed_list": [
{{range $index, $element := .value_list}}
{{if $index}}
, "{{$element}}"
{{else}}
"{{$element}}"
{{end}}
{{end}}
]
}
Also tried with two others versions of tykio/tyk-gateway (v4.0rc21 and v3.0.4). Same result. There is no transformation.
Additional headers:
Content-Type: application/json
Authorization: default9f1f66b1404c4e95b8d44cf35b7d9074
That token is created with POST call to Create Tyk Token which sends body as below.
{
"quota_max": 0,
"rate": 2,
"per": 5,
"org_id": "default",
"access_rights": {
"1": {
"api_name": "Tyk Test API",
"api_id": "1",
"versions": [
"Default"
],
"allowed_urls": [],
"limit": null,
"allowance_scope": ""
}
}
}