iT邦幫忙

1

在本機瀏覽Open API格式的文件

  • 分享至 

  • xImage
  •  

原文: https://j2hongming.github.io/2021/08/06/view-open-api-in-local/

open API類似原始資料, 可以使用ReDoc或是Swagger UI其中之一呈現

若有使用vs code的話可以直接安裝擴充功能: OpenAPI (Swagger) Editor

若想要放在內部機器上可以使用docker

git clone git@github.com:j2hongming/open_api.git

docker-compose.yaml內容如下

version: '3'
services:
  redoc:
    image: redocly/redoc
    ports:
      - 8888:80
    volumes:
      - ./api.yaml:/usr/share/nginx/html/api.yaml
    environment:
      - SPEC_URL=/api.yaml
  swagger:
    image: swaggerapi/swagger-ui
    ports:
      - 8080:8080
    volumes:
      - ./api.yaml:/api.yaml
    environment:
      - SWAGGER_JSON=/api.yaml

參考


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言