Azure APIM:使用发送请求模式发送客户端证书
Azure APIM: Send a client certificate with send-request mode
是否可以在 azure apim 中使用策略 "send-request mode" 随请求发送证书?
<send-request mode="new" response-variable-name="" timeout="seconds" ignore-error="true">
<set-url></set-url>
<set-method>GET</set-method>
<set-header name="" exists-action="override">
<value></value>
</set-header>
<set-body></set-body>
</send-request>
Is it possible in azure apim to use the policy "send-request mode" to send a certificate with the request?
简而言之,这是可能的。
send-request 策略将提供的请求发送到指定的 URL,等待时间不超过设置的超时值。
政策声明如下:
<send-request mode="new|copy" response-variable-name="" timeout="60 sec" ignore-error
="false|true">
<set-url>...</set-url>
<set-method>...</set-method>
<set-header name="" exists-action="override|skip|append|delete">...</set-header>
<set-body>...</set-body>
<authentication-certificate thumbprint="thumbprint" />
</send-request>
使用 authentication-certificate
策略使用客户端证书对后端服务进行身份验证。证书需要先 安装到 API 管理中,并由其指纹识别 。
是否可以在 azure apim 中使用策略 "send-request mode" 随请求发送证书?
<send-request mode="new" response-variable-name="" timeout="seconds" ignore-error="true">
<set-url></set-url>
<set-method>GET</set-method>
<set-header name="" exists-action="override">
<value></value>
</set-header>
<set-body></set-body>
</send-request>
Is it possible in azure apim to use the policy "send-request mode" to send a certificate with the request?
简而言之,这是可能的。
send-request 策略将提供的请求发送到指定的 URL,等待时间不超过设置的超时值。
政策声明如下:
<send-request mode="new|copy" response-variable-name="" timeout="60 sec" ignore-error
="false|true">
<set-url>...</set-url>
<set-method>...</set-method>
<set-header name="" exists-action="override|skip|append|delete">...</set-header>
<set-body>...</set-body>
<authentication-certificate thumbprint="thumbprint" />
</send-request>
使用 authentication-certificate
策略使用客户端证书对后端服务进行身份验证。证书需要先 安装到 API 管理中,并由其指纹识别 。