API Management DTAP lessons learned
With API management we have seperate environments for Development, Test and Production.
The best way to move an API from one environment to the other is through GIT at this moment.
https://docs. … more
With API management we have seperate environments for Development, Test and Production.
The best way to move an API from one environment to the other is through GIT at this moment.
https://docs. … more
Just some random notes on Azure API management:
Parse JWT in Azure API management policy:
@(context.Request.Headers.GetValueOrDefault("Authorization","").AsJwt()?.Subject)
API management and … more