Contents tagged with API

  • API Management DTAP lessons learned

    Tags: API

    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

  • Azure API management tips & tricks

    Tags: Azure, API

    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