You are configuring an inbound policy in Azure API Management to modify the request path before it is forwarded to the backend service. The policy must redirect the client request from the public URL structure to the backend endpoint path /users/{id}. Complete the policy XML block by identifying the missing element name to rewrite the path:
Cevap:<inbound>
<base />
<【rewrite-uri】 template="/users/{id}" />
</inbound>
<base />
<【rewrite-uri】 template="/users/{id}" />
</inbound>
Cevap
rewrite-uri
The rewrite-uri policy modifies a request URL from the form in which it was received to the form expected by the web service that implements the API. In this scenario, it is used to redirect incoming requests to the /users/{id} path template.
Adım Adım Çözüm
Anahtar Kavram
Azure API Management URL rewriting policy