我想使用Apigee ServiceCallout
,但要包含具有变量FormParamss
值的变量name
。
我要实现的示例:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ServiceCallout async="false" continueOnError="false" enabled="true" name="My-Callout">
<Properties/>
<Request>
<Set>
<Verb>POST</Verb>
<FormParams>
<FormParam name="token">{accesstoken}</FormParam>
<FormParam name="{variableFormName}">{variableFormData}</FormParam>
</FormParams>
</Set>
<IgnoreUnresolvedVariables>true</IgnoreUnresolvedVariables>
</Request>
...
variableFormName
不能解析为变量值,因此可以直接传递值{variableFormName}
。
如何解析该值,以便动态处理名称?