6
http://editor.swagger.io/でCookieベースの自動化を使用するAPIを文書化してテストしたいと思います。簡単な例を与える:次のYAMLを書く方法、/ loginアクションはCookieを作成し、Cookieは/ showMySecretStuffに渡されなければならないか?SwaggerエディタでCookiesを使用する方法
swagger: '2.0'
info:
title: Test API
version: '1'
host: my.test.com
schemes:
- https
basePath:/
consumes:
- multipart/form-data
produces:
- application/json
paths:
/login:
post:
parameters:
- name: username
in: formData
required: true
type: string
- name: password
in: formData
required: true
type: string
default: secret
responses:
200:
description: OK
/showMySecretStuff:
get:
responses:
200:
description: OK