在WSO2 API Manger中,有没有办法从请求xml / json(有效负载)中读取参数值,并根据该值将请求路由到不同的后端端点?
答案 0 :(得分:0)
您可以尝试使用中介扩展程序。
API Manager具有其收到的API调用请求的默认中介流。您可以扩展此默认中介流以路由请求。
<sequence xmlns="http://ws.apache.org/ns/synapse" name="YahooWeather2"> <property name="YQL" type="Expression" expression="concat('?q=select%20*%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places(1)%20where%20text%3D%22',syn:get-property('uri.var.zipcode'),',',syn:get-property('uri.var.country'),'%22)format=json')"/> <property name="REST_URL_POSTFIX" type="Expression" expression="get-property('YQL')" scope="Axis2"/> </sequence>
您可以在API商店中通过 API控制台查看可用性。有关详细信息,请参阅https://docs.wso2.com/display/AM191/Change+the+Default+Mediation+Flow+of+API+Requests