Azure Api管理能否公开OpenAPI文档?

时间:2019-05-07 16:52:49

标签: azure azure-api-management openapi

我们通过Api管理公开了一些Azure功能吗? Api Management是否可以自动公开/ swagger终结点,就像Swashbuckle包对Asp.Net中的api一样。

2 个答案:

答案 0 :(得分:1)

Azure API管理无法自动生成页面。 Azure API管理只能provide you the API definition file。然后,您可以将其他工具(例如Swagger UI)与定义文件一起使用来生成所需的页面。

此外,Azure API管理还为您提供了UI(https://youapimanagementname.portal.azure-api.net),以告诉您如何使用所有API。

答案 1 :(得分:1)

您可以通过 API 本身公开您的 openapi 文档。 可以在

上请求 API 的文档

https://management.azure.com/subscriptions/[subscriptionid]/resourceGroups/[resourcegroupname]/Microsoft.ApiManagement/service/[servicename]/apis/[apiid]?export=true&format=openapi&api-version=2021-01-01-preview

只需在您的 API 上创建一个额外的操作(例如 openapi.yaml),通过自定义策略调用上面的 url 并返回结果。您可以使用以下策略

<policies>
    <inbound>
        <base />
        <send-request mode="new" response-variable-name="result" timeout="300" ignore-error="false">
            <set-url>@("https://management.azure.com/subscriptions/{{azure-subscriptionid}}/resourceGroups/{{azure-resourcegroup}}/providers/Microsoft.ApiManagement/service/" + context.Deployment.ServiceName + "/apis/" + context.Api.Id + "?export=true&format=openapi&api-version=2021-01-01-preview")</set-url>
            <set-method>GET</set-method>
            <authentication-managed-identity resource="https://management.azure.com/" />
        </send-request>
        <return-response>
            <set-status code="200" reason="OK" />
            <set-header name="Content-Type" exists-action="override">
                <value>application/yaml</value>
            </set-header>
            <set-body>@((string)(((IResponse)context.Variables["result"]).Body.As<JObject>()["value"]))</set-body>
        </return-response>
    </inbound>
    <backend>
        <base />
    </backend>
    <outbound>
        <base />
    </outbound>
    <on-error>
        <base />
    </on-error>
</policies>

可以在 https://www.devprotocol.com/2021/07/20/expose-openapi-documentation-on-azure-api-management.html

上找到更多信息