Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for s3cret (0.25 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

    Import the modules installed.
    
    Create a random secret key that will be used to sign the JWT tokens.
    
    To generate a secure random secret key use the command:
    
    <div class="termy">
    
    ```console
    $ openssl rand -hex 32
    
    09d25e094faa6ca2556c818166b7a9563b93f7099f6f0f4caa6cf63b88e8d3e7
    ```
    
    </div>
    
    And copy the output to the variable `SECRET_KEY` (don't use the one in the example).
    
    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">
    
    Rufen Sie den Endpunkt `/users/me/` auf, Sie erhalten die Response:
    
    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",
      "email": "******@****.***",
    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