Azure API Management and API Versioning -


how azure api management me manage different versions of api , re-route selected actions old version new version of api?

there 2 ways achieve that.

  1. you can configure api service url not include version segment, like: https://my.api. , configure version segment on each operation's rewrite url template, have operation url template of /resource , rewrite url template of /v1/resource. way able change version segment value on each operation separately.
  2. or if you'd keep "default" version segment in api's service url on selected operations can set policy uses set backend service change backend request path.

https://docs.microsoft.com/en-us/azure/api-management/api-management-faq#how-do-i-use-api-versioning-in-api-management


Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -