FormParams中带有变量名的Apigee ServiceCallout

时间:2018-09-20 20:45:39

标签: apigee

我想使用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}。 如何解析该值,以便动态处理名称?

0 个答案:

没有答案