Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Schick (0.41 sec)

  1. docs/zh/docs/tutorial/security/oauth2-jwt.md

    可以看到如下用户界面:
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/security/image07.png">
    
    用与上一章同样的方式实现应用授权。
    
    使用如下凭证:
    
    用户名: `johndoe` 密码: `secret`
    
    !!! check "检查"
    
        注意,代码中没有明文密码**`secret`**,只保存了它的哈希值。
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/security/image08.png">
    
    调用 `/users/me/` 端点,收到下面的响应:
    
    ```JSON
    {
      "username": "johndoe",
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 21:21:35 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/security/oauth2-jwt.md

    If you want to play with JWT tokens and see how they work, check <a href="https://jwt.io/" class="external-link" target="_blank">https://jwt.io</a>.
    
    ## Install `python-jose`
    
    We need to install `python-jose` to generate and verify the JWT tokens in Python:
    
    <div class="termy">
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 13K bytes
    - Viewed (0)
  3. docs/ja/docs/tutorial/security/oauth2-jwt.md

    次のようなユーザーインターフェイスが表示されます:
    
    <img src="/img/tutorial/security/image07.png">
    
    前回と同じ方法でアプリケーションの認可を行います。
    
    次の認証情報を使用します:
    
    Username: `johndoe`
    Password: `secret`
    
    !!! check "確認"
        コードのどこにも平文のパスワード"`secret`"はなく、ハッシュ化されたものしかないことを確認してください。
    
    <img src="/img/tutorial/security/image08.png">
    
    エンドポイント`/users/me/`を呼び出すと、次のようなレスポンスが得られます:
    
    ```JSON
    {
      "username": "johndoe",
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 21:21:35 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/security/oauth2-jwt.md

    Melden Sie sich bei der Anwendung auf die gleiche Weise wie zuvor an.
    
    Verwenden Sie die Anmeldeinformationen:
    
    Benutzername: `johndoe`
    Passwort: `secret`.
    
    !!! check
        Beachten Sie, dass im Code nirgendwo das Klartext-Passwort "`secret`" steht, wir haben nur die gehashte Version.
    
    <img src="/img/tutorial/security/image08.png">
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 20:27:06 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/security/oauth2-jwt.md

    👆 🔜 👀 👩‍💻 🔢 💖:
    
    <img src="/img/tutorial/security/image07.png">
    
    ✔ 🈸 🎏 🌌 ⏭.
    
    ⚙️ 🎓:
    
    🆔: `johndoe`
    🔐: `secret`
    
    !!! check
        👀 👈 🕳 📟 🔢 🔐 "`secret`", 👥 🕴 ✔️ #️⃣ ⏬.
    
    <img src="/img/tutorial/security/image08.png">
    
    🤙 🔗 `/users/me/`, 👆 🔜 🤚 📨:
    
    ```JSON
    {
      "username": "johndoe",
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 21:21:35 GMT 2024
    - 9.5K bytes
    - Viewed (0)
Back to top