Hi, I am encountering an issue after packing my app.
Actually, i have a secure iparam with a dynamic name - named api_agentId (eg: api_12345678)
"headers": {
"Authorization": "<%= iparam['api_' + context.agentId] %>"
}
When I attempt to use the code snippet mentioned above in requests.json, I encounter authorization issues while trying to communicate with the server.
However, when I use a static name like ‘apikey’ as an example, I can successfully authorize access.
This issue only arises after I pack the app, there are no issues when I use ‘fdk run’.
Could you please provide assistance with this?