the situation goes like this:
after I modified a functional interface, the data structure returned has changed
, and then the interface before
is still online with
. It is impossible for me to modify the original interface directly. Otherwise, there will be a problem with the previous function
then I can only create a new API for the modified function
but if there are too many interfaces, will it result in a large number of abandoned interfaces and how to better distinguish between pre-upgrade and post-upgrade interfaces in the production environment
?