Desidero documentare e testare un'API, che utilizza l'autenticazione basata su cookie in http://editor.swagger.io/. Per dare un semplice esempio: come scrivere nel seguente YAML, che l'azione/login crea un cookie e il cookie deve essere passato a/showMySecretStuff?Come utilizzare i cookie nell'editor Swagger
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