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

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -