我已经准备好 openapi:3.0.0 模式,然后尝试为我的api配置授权。 Cookie中应该有两个参数。让它们分别为cookie1和cookie2。
指定了下一个安全方案:
components:
securitySchemes:
cookie1:
type: apiKey
in: cookie
name: cookie1
cookie2:
type: apiKey
in: cookie
name: cookie2
并且我需要将此配置全局设置
security:
- cookie1: []
- cookie2: []
在执行请求时,我希望请求中有下一个库克参数:
curl ... -H "Cookie: cookie1=qwerty; cookie2=asdfgh"
但请求是:
curl ... -H "Cookie: cookie1=qwerty&cookie2=asdfgh"
Cookie与&串联,但我需要与;
串联有办法解决吗?