将自定义处理程序添加到特定的API wso2 API-Manager

时间:2018-11-25 14:04:03

标签: wso2 wso2-am

我需要将自定义处理程序和APIAuthenticationHandler添加到特定的API,并且需要将其添加到

handler class =“ org.wso2.carbon.apimgt.gateway.handlers.security.APIAuthenticationHandler” />

(请注意,APIAuthenticationHandler在这里被调用了两次,这是一个自定义要求)

如何通过编辑Velocity_template.xml来以编程方式执行此操作

我正在使用API​​-Manager 2.00

谢谢

2 个答案:

答案 0 :(得分:2)

您可以使用API custom properties。将自定义属性(例如auth_mode=Inhouse)添加到API,然后基于该属性,更新速度模板中的处理程序部分,如下所示。

<Handlers>
    #foreach($handler in $handlers)
        #if(($handler.className ==
"org.wso2.carbon.apimgt.gateway.handlers.security.APIAuthenticationHandler") &&
($apiObj.additionalProperties.get('auth_mode') == "Inhouse"))
            <handler xmlns="http://ws.apache.org/ns/synapse" class="$handler.className">
            #if($handler.hasProperties())
                #set ($map = $handler.getProperties())
                #foreach($property in $map.entrySet())
                    <property name="$!property.key" value="$!property.value"/>
                #end
            #end
            </handler>
            <handler class="org.wso2.apim.custom.extensions.CustomAuthHandler"/>
<Handlers>

如果您不能使用自定义属性,则可以使用$!apiName变量。

答案 1 :(得分:0)

如果($!apiName.toLowerCase()。endsWith(“ basic”))               #其他