Giter Site home page Giter Site logo

Comments (3)

hemeroc avatar hemeroc commented on July 21, 2024

The password field in the original swagger UI is also not masked, there is no way do differentiate a normal text field from a password field.
(see: http://petstore.swagger.io/#!/user/loginUser )

"parameters":[
   {
      "name":"username",
      "in":"query",
      "description":"The user name for login",
      "required":true,
      "type":"string"
   },
   {
      "name":"password",
      "in":"query",
      "description":"The password for login in clear text",
      "required":true,
      "type":"string"
   }
],

from swagger-ui.

ddaguro avatar ddaguro commented on July 21, 2024

If your definition looks like this it will mask it in the Petstore UI.
"format": "password"

{
"name": "username",
"in": "formData",
"description": "Username",
"required": true,
"type": "string"
},
{
"name": "password",
"in": "formData",
"description": "Password",
"required": true,
"type": "string",
"format": "password"
}

On Thu, Jul 9, 2015 at 3:34 AM, Hemeroc [email protected] wrote:

The password field in the original swagger UI is also not masked, there is
no way do differentiate a normal text field from a password field.
(see: http://petstore.swagger.io/#!/user/loginUser )

"parameters":[
{
"name":"username",
"in":"query",
"description":"The user name for login",
"required":true,
"type":"string"
},
{
"name":"password",
"in":"query",
"description":"The password for login in clear text",
"required":true,
"type":"string"
}
],


Reply to this email directly or view it on GitHub
#22 (comment).

from swagger-ui.

jensoleg avatar jensoleg commented on July 21, 2024

Updated the repo to handle input parameter password format

from swagger-ui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.