OpenAPI 3.0 사용 방법

12814 단어 REST-APIOpenAPI
이 페이지를 참고하였다.
제작 이해 OpenAPI 3.0/conneexion
설명 사양
GET에서 방문http://localhost:8080/api/v0/health에 응답했다.
ex02.yaml
openapi: 3.0.0
info:
  title: OpenAPI Tutorial
  description: OpenAPI Tutorial by halhorn
  version: 0.0.0
servers:
  - url: https://example.com/api/v0
    description: プロダクション API
  - url: http://{host}:{port}/api/v0
    description: 開発用
    variables:
      host:
        default: localhost
      port:
        default: '10080'
paths:
  /health:
    get:
      operationId: openapitutorial.controller.health.call
      summary: サーバーの状態を返します
      description: サーバーの状態を返します。
      responses:
        '200':
          description: サーバーは正常に動作しています
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/get_health_response'
components:
  schemas:
    get_health_response:
      description: サーバーの状態のレスポンス
      type: object
      properties:
        status:
          type: string
          enum:
            - ok
      required:
        - status
파리에서 데이트
https://editor.swagger.io/
JSON으로 변환
File -> convert and save as JSON
ex02.json
{
  "openapi": "3.0.0",
  "info": {
    "title": "OpenAPI Tutorial",
    "description": "OpenAPI Tutorial by halhorn",
    "version": "0.0.0"
  },
  "servers": [
    {
      "url": "https://example.com/api/v0",
      "description": "プロダクション API"
    },
    {
      "url": "http://{host}:{port}/api/v0",
      "description": "開発用",
      "variables": {
        "host": {
          "default": "localhost"
        },
        "port": {
          "default": "10080"
        }
      }
    }
  ],
  "paths": {
    "/health": {
      "get": {
        "operationId": "openapitutorial.controller.health.call",
        "summary": "サーバーの状態を返します",
        "description": "サーバーの状態を返します。",
        "responses": {
          "200": {
            "description": "サーバーは正常に動作しています",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/get_health_response"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "get_health_response": {
        "description": "サーバーの状態のレスポンス",
        "type": "object",
        "properties": {
          "status": {
            "type": "string",
            "enum": [
              "ok"
            ]
          }
        },
        "required": [
          "status"
        ]
      }
    }
  }
}

Flash 서버 만들기


Generate Server -> python-flask
python-flask-server-generated.zip을 내다
해동
unzip python-flask-server-generated.zip
장서고를 설치하다
pip3 install -r requirements.txt
실행 서버
python3 -m swagger_server
클라이언트를 통한 액세스
$ http http://0.0.0.0:8080/api/v0/health
HTTP/1.0 200 OK
Content-Length: 17
Content-Type: application/json
Date: Fri, 22 Oct 2021 02:14:59 GMT
Server: Werkzeug/1.0.1 Python/3.9.7

"do some magic!"

관련 페이지



OpenAPI 3.0 사용 방법(GET 매개변수 포함)

좋은 웹페이지 즐겨찾기