I need to store the issuer signing key in keyvault and then verify the JWT against it through apim policy . How to do that ?
<policies>
<inbound>
<base />
<validate-jwt header-name="Authorization" failed-validation-httpcode="401" failed-validation-error-message="Unauthorized">
<issuer-signing-keys>
<key>123412341234123412341234</key>
</issuer-signing-keys>
</validate-jwt>
</inbound>
</policies>