Swagger UI 观看安全规范
Swagger UI watch security specifications
我正在用 Swagger 记录 API,这是我第一次使用 Swagger。当我使用 swagger 编辑器时,我能够记录并查看我想看到的内容。但是,当我将相同的 yaml 文件放入 swagger ui 时,我无法看到我的安全定义。可能是我做错了什么?还是根本不可能?
securityDefinitions:
clientId:
type: apiKey
name: x_client_id
in: header
accessToken:
type: apiKey
name: access_token
in: header
security:
- clientId: []
- accessToken: []
以及我使用的示例
/auth/signup:
post:
description: register a user
security:
- accessToken: []
parameters:
- name: User
in: body
required: true
schema:
$ref: '#/definitions/UserRequest'
responses:
200:
description: SuccessfulResponse
schema:
$ref: '#/definitions/AuthSuccessfulResponse'
400:
description: Error
schema:
$ref: '#/definitions/BadRequest'
谢谢
目前是的,安全定义不是动态执行的。这将在 https://github.com/swagger-api/swagger-ui/pull/2014 合并后的一天左右解决。
我正在用 Swagger 记录 API,这是我第一次使用 Swagger。当我使用 swagger 编辑器时,我能够记录并查看我想看到的内容。但是,当我将相同的 yaml 文件放入 swagger ui 时,我无法看到我的安全定义。可能是我做错了什么?还是根本不可能?
securityDefinitions:
clientId:
type: apiKey
name: x_client_id
in: header
accessToken:
type: apiKey
name: access_token
in: header
security:
- clientId: []
- accessToken: []
以及我使用的示例
/auth/signup:
post:
description: register a user
security:
- accessToken: []
parameters:
- name: User
in: body
required: true
schema:
$ref: '#/definitions/UserRequest'
responses:
200:
description: SuccessfulResponse
schema:
$ref: '#/definitions/AuthSuccessfulResponse'
400:
description: Error
schema:
$ref: '#/definitions/BadRequest'
谢谢
目前是的,安全定义不是动态执行的。这将在 https://github.com/swagger-api/swagger-ui/pull/2014 合并后的一天左右解决。