Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 486 for token5 (0.09 seconds)

  1. docs/uk/docs/tutorial/security/simple-oauth2.md

    /// info | Інформація
    
    Для повнішого пояснення `**user_dict` перегляньте [документацію для **Додаткових моделей**](../extra-models.md#about-user-in-dict).
    
    ///
    
    ## Поверніть токен { #return-the-token }
    
    Відповідь точки входу `token` має бути об'єктом JSON.
    
    Вона повинна містити `token_type`. У нашому випадку, оскільки ми використовуємо токени «Bearer», тип токена має бути «`bearer`».
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 15K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

        /**
         * The role for this action.
         */
        public static final String ROLE = "admin-accesstoken";
    
        /**
         * The token parameter.
         */
        public static final String TOKEN = "token";
    
        /**
         * The expires parameter.
         */
        public static final String EXPIRES = "expires";
    
        /**
         * The expired time parameter.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/security/oauth2-jwt.md

    # OAuth2 avec mot de passe (et hachage), Bearer avec des jetons JWT { #oauth2-with-password-and-hashing-bearer-with-jwt-tokens }
    
    Maintenant que nous avons tout le flux de sécurité, rendons réellement l'application sécurisée, en utilisant des jetons <abbr title="JSON Web Tokens">JWT</abbr> et un hachage de mot de passe sécurisé.
    
    Ce code est utilisable dans votre application, enregistrez les hachages de mots de passe dans votre base de données, etc.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/SearchForm.java

     */
    package org.codelibs.fess.app.web.admin.accesstoken;
    
    /**
     * The search form for Access Token.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The ID field for searching access tokens.
         */
        public String id;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 929 bytes
    - Click Count (0)
  5. docs/zh-hant/docs/tutorial/security/oauth2-jwt.md

    # 使用密碼(與雜湊)的 OAuth2、以 Bearer 搭配 JWT 權杖 { #oauth2-with-password-and-hashing-bearer-with-jwt-tokens }
    
    現在我們已經有完整的安全流程了,接下來用 <abbr title="JSON Web Tokens - JSON 網路權杖">JWT</abbr> 權杖與安全的密碼雜湊,讓應用真正安全。
    
    這份程式碼可以直接用在你的應用中,把密碼雜湊存進資料庫等等。
    
    我們會從上一章的內容繼續往下擴充。
    
    ## 關於 JWT { #about-jwt }
    
    JWT 的意思是「JSON Web Tokens」。
    
    它是一種把 JSON 物件編碼成一段長且緊密(沒有空白)的字串的標準。看起來像這樣:
    
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/llm/LlmChatResponse.java

            this.finishReason = finishReason;
        }
    
        /**
         * Gets the number of prompt tokens.
         *
         * @return the prompt tokens count
         */
        public Integer getPromptTokens() {
            return promptTokens;
        }
    
        /**
         * Sets the number of prompt tokens.
         *
         * @param promptTokens the prompt tokens count
         */
        public void setPromptTokens(final Integer promptTokens) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/core/text/Tokenizer.java

         *
         * @return The value of the string.
         */
        public String getStringValue() {
            return sval;
        }
    
        /**
         * Advances to the next token.
         *
         * @return The type of the token.
         */
        public int nextToken() {
            initVal();
            if (processEOF()) {
                return ttype;
            }
            if (processWhitespace()) {
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/security/oauth2-scopes.md

    Bu, Facebook/Google/GitHub vb. ile giriş yaparken izin verdiğinizde kullanılan mekanizmanın aynısıdır:
    
    <img src="/img/tutorial/security/image11.png">
    
    ## Scope'lu JWT token { #jwt-token-with-scopes }
    
    Şimdi token *path operation*'ını, istenen scope'ları döndürecek şekilde değiştirin.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/advanced/security/oauth2-scopes.md

    <img src="/img/tutorial/security/image11.png">
    
    ## 內含 scopes 的 JWT token { #jwt-token-with-scopes }
    
    現在,修改 token 的路徑操作以回傳所請求的 scopes。
    
    我們仍然使用相同的 `OAuth2PasswordRequestForm`。它包含屬性 `scopes`,其為 `list` 的 `str`,列出請求中收到的每個 scope。
    
    並且我們將這些 scopes 作為 JWT token 的一部分回傳。
    
    /// danger
    
    為了簡化,這裡我們只是直接把接收到的 scopes 加進 token。
    
    但在你的應用中,為了安全性,你應確保只加入該使用者實際可擁有或你預先定義的 scopes。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 12.7K bytes
    - Click Count (0)
  10. docs/uk/docs/tutorial/security/oauth2-jwt.md

    # OAuth2 з паролем (і хешуванням), Bearer з токенами JWT { #oauth2-with-password-and-hashing-bearer-with-jwt-tokens }
    
    Тепер, коли ми маємо весь потік безпеки, зробімо застосунок справді захищеним, використовуючи токени <abbr title="JSON Web Tokens - Токени JSON Web">JWT</abbr> і безпечне хешування паролів.
    
    Цей код ви можете реально використовувати у своєму застосунку, зберігати хеші паролів у своїй базі даних тощо.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 17.9K bytes
    - Click Count (0)
Back to Top