0

我正在使用flasgger 为flask 中的API 生成swagger UI。

我有一个http://localhost:5000/api/token返回令牌的 API 端点,如果给出正确的用户名和密码,一切都很好,唯一的问题是密码以明文形式发送,我想在通过 swagger 发布时加密密码并在烧瓶中解密。

在此处输入图像描述

生成的卷曲是

curl -X POST "http://localhost:5000/api/token" -H "accept: application/json" -H "Content-Type: application/json" -d "{"password": "mypassword", "username": "myuser"}"

如何在 swagger 或 flasgger 中加密密码值。我在下面尝试过,但没有看到任何变化。

Token:
    type: object
    properties:
        username:
            type: string
            description: 'enter your username'
            example:"myuser"
        password:
            type: string
            description: 'enter your password'
            example: 'mypassword'
            format: base64

提前致谢!

4

0 回答 0