OpenAPI プロキシの使用
これが存在する理由
スペック全体でプロキシを有効にする
openapi: '3.0.3'
x-enable-proxy: true
info:
title: Example API
version: '1.0.0'
servers:
- url: https://api.example.com特定のオペレーションで有効または無効にする
openapi: '3.0.3'
info:
title: Example API
version: '1.0.0'
servers:
- url: https://api.example.com
paths:
/reports:
get:
summary: レポート一覧
x-enable-proxy: true
responses:
'200':
description: OK
post:
summary: レポート作成
x-enable-proxy: false
responses:
'201':
description: Createdプロキシがサポートするもの
セキュリティ
最終更新
役に立ちましたか?