是否可以在wso2 esb / ei中为身份oauth2令牌服务(https://:9443 / oauth2 / token)创建传递代理?
答案 0 :(得分:1)
You can create a passthrough proxy in EI/ESB like below
<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse" name="token" startOnLoad="true" transports="http https">
<target>
<inSequence>
<endpoint>
<address uri="https://:9443/oauth2/token" />
</endpoint>
</inSequence>
<outSequence>
<send />
</outSequence>
<faultSequence />
</target>
</proxy>