Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for access_token (0.11 sec)

  1. .gitignore

    *.iml
    .idea
    .vscode
    .DS_Store
    /plugins/
    /modules/
    /tomcat.8080/
    dbflute_fess/output/doc/lastadoc-fess.html
    dbflute_fess/schema/project-lastadoc-fess.json
    src/main/resources/fess_indices/fess_config.access_token/access_token.bulk
    src/main/resources/ga_client_secrets.p12
    src/main/webapp/WEB-INF/project.properties
    /.apt_generated/
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 01:47:10 UTC 2024
    - 1023 bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/security/simple-oauth2.md

    ///
    
    ## ๐Ÿ“จ ๐Ÿค
    
    ๐Ÿ“จ `token` ๐Ÿ”— ๐Ÿ”œ ๐ŸŽป ๐ŸŽš.
    
    โšซ๏ธ ๐Ÿ”œ โœ”๏ธ `token_type`. ๐Ÿ‘† ๐Ÿ’ผ, ๐Ÿ‘ฅ โš™๏ธ "๐Ÿ“จ" ๐Ÿค, ๐Ÿค ๐Ÿ†Ž ๐Ÿ”œ "`bearer`".
    
    & โšซ๏ธ ๐Ÿ”œ โœ”๏ธ `access_token`, โฎ๏ธ ๐ŸŽป โš— ๐Ÿ‘† ๐Ÿ” ๐Ÿค.
    
    ๐Ÿ‘‰ ๐Ÿ™… ๐Ÿ–ผ, ๐Ÿ‘ฅ ๐Ÿ”œ ๐Ÿ• ๐Ÿ˜Ÿ & ๐Ÿ“จ ๐ŸŽ `username` ๐Ÿค.
    
    /// tip
    
    โญ ๐Ÿ“ƒ, ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ‘€ ๐ŸŽฐ ๐Ÿ” ๐Ÿ› ๏ธ, โฎ๏ธ ๐Ÿ” #๏ธโƒฃ &amp; <abbr title="JSON Web Tokens">๐Ÿฅ™</abbr> ๐Ÿค.
    
    โœ‹๏ธ ๐Ÿ”œ, โžก๏ธ ๐ŸŽฏ ๐Ÿ”› ๐ŸŽฏ โ„น ๐Ÿ‘ฅ ๐Ÿ’ช.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. internal/config/identity/openid/provider/keycloak.go

    		return User{}, err
    	}
    	req.URL.Path = path.Join(req.URL.Path, "realms", k.realm, "users", userid)
    
    	k.Lock()
    	accessToken := k.accessToken
    	k.Unlock()
    	if accessToken.AccessToken == "" {
    		return User{}, ErrAccessTokenExpired
    	}
    	req.Header.Set("Authorization", "Bearer "+accessToken.AccessToken)
    	resp, err := k.client.Do(req)
    	if err != nil {
    		return User{}, err
    	}
    	defer resp.Body.Close()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Jul 14 18:12:07 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. .github/workflows/ci.yml

          - name: 'Cancel previous runs'
            uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
            with:
              access_token: ${{ github.token }}
          - name: 'Check out repository'
            uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
          - name: 'Set up JDK ${{ matrix.java }}'
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 29 18:53:45 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/security/simple-oauth2.md

    The response of the `token` endpoint must be a JSON object.
    
    It should have a `token_type`. In our case, as we are using "Bearer" tokens, the token type should be "`bearer`".
    
    And it should have an `access_token`, with a string containing our access token.
    
    For this simple example, we are going to just be completely insecure and return the same `username` as the token.
    
    /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/security/simple-oauth2.md

    Die Response des `token`-Endpunkts muss ein JSON-Objekt sein.
    
    Es sollte einen `token_type` haben. Da wir in unserem Fall โ€žBearerโ€œ-Token verwenden, sollte der Token-Typ "`bearer`" sein.
    
    Und es sollte einen `access_token` haben, mit einem String, der unseren Zugriffstoken enthรคlt.
    
    In diesem einfachen Beispiel gehen wir einfach vรถllig unsicher vor und geben denselben `username` wie der Token zurรผck.
    
    /// tip | "Tipp"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/main/resources/esclient.xml

    		<!-- fess index -->
    		<postConstruct name="addIndexConfig">
    			<arg>"fess/doc"</arg>
    		</postConstruct>
    		<!-- fess_config index -->
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.access_token/access_token"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.bad_word/bad_word"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Oct 21 12:20:52 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/security/simple-oauth2.md

    ///
    
    ## ่ฟ”ๅ›ž Token
    
    `token` ็ซฏ็‚น็š„ๅ“ๅบ”ๅฟ…้กปๆ˜ฏ JSON ๅฏน่ฑกใ€‚
    
    ๅ“ๅบ”่ฟ”ๅ›ž็š„ๅ†…ๅฎนๅบ”่ฏฅๅŒ…ๅซ `token_type`ใ€‚ๆœฌไพ‹ไธญ็”จ็š„ๆ˜ฏ**Bearer**Token๏ผŒๅ› ๆญค๏ผŒ Token ็ฑปๅž‹ๅบ”ไธบ**`bearer`**ใ€‚
    
    ่ฟ”ๅ›žๅ†…ๅฎน่ฟ˜ๅบ”ๅŒ…ๅซ `access_token` ๅญ—ๆฎต๏ผŒๅฎƒๆ˜ฏๅŒ…ๅซๆƒ้™ Token ็š„ๅญ—็ฌฆไธฒใ€‚
    
    ๆœฌไพ‹ๅชๆ˜ฏ็ฎ€ๅ•็š„ๆผ”็คบ๏ผŒ่ฟ”ๅ›ž็š„ Token ๅฐฑๆ˜ฏ `username`๏ผŒไฝ†่ฟ™็งๆ–นๅผๆžไธๅฎ‰ๅ…จใ€‚
    
    /// tip | "ๆ็คบ"
    
    ไธ‹ไธ€็ซ ไป‹็ปไฝฟ็”จๅ“ˆๅธŒๅฏ†็ ๅ’Œ <abbr title="JSON Web Tokens">JWT</abbr> Token ็š„็œŸๆญฃๅฎ‰ๅ…จๆœบๅˆถใ€‚
    
    ไฝ†็Žฐๅœจ๏ผŒไป…ๅ…ณๆณจๆ‰€้œ€็š„็‰นๅฎš็ป†่Š‚ใ€‚
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. internal/config/identity/openid/jwt.go

    }
    
    func (r *Config) updateUserinfoClaims(ctx context.Context, arn arn.ARN, accessToken string, claims map[string]interface{}) error {
    	pCfg, ok := r.arnProviderCfgsMap[arn]
    	// If claim user info is enabled, get claims from userInfo
    	// and overwrite them with the claims from JWT.
    	if ok && pCfg.ClaimUserinfo {
    		if accessToken == "" {
    			return errors.New("access_token is mandatory if user_info claim is enabled")
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 02:46:36 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/security/simple-oauth2.md

    ///
    
    ## ํ† ํฐ ๋ฐ˜ํ™˜ํ•˜๊ธฐ
    
    `token` ์—”๋“œํฌ์ธํŠธ์˜ ์‘๋‹ต์€ JSON ๊ฐ์ฒด์—ฌ์•ผ ํ•ฉ๋‹ˆ๋‹ค.
    
    `token_type`์ด ์žˆ์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค. ์—ฌ๊ธฐ์„œ๋Š” "Bearer" ํ† ํฐ์„ ์‚ฌ์šฉํ•˜๋ฏ€๋กœ ํ† ํฐ ์œ ํ˜•์€ "`bearer`"์—ฌ์•ผ ํ•ฉ๋‹ˆ๋‹ค.
    
    ๊ทธ๋ฆฌ๊ณ  ์•ก์„ธ์Šค ํ† ํฐ์„ ํฌํ•จํ•˜๋Š” ๋ฌธ์ž์—ด๊ณผ ํ•จ๊ป˜ `access_token`์ด ์žˆ์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.
    
    ์ด ๊ฐ„๋‹จํ•œ ์˜ˆ์ œ์—์„œ๋Š” ์™„์ „ํžˆ ์•ˆ์ „ํ•˜์ง€ ์•Š๊ณ , ๋™์ผํ•œ `username`์„ ํ† ํฐ์œผ๋กœ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค.
    
    /// ํŒ
    
    ๋‹ค์Œ ์žฅ์—์„œ๋Š” ํŒจ์Šค์›Œ๋“œ ํ•ด์‹ฑ ๋ฐ <abbr title="JSON Web Tokens">JWT</abbr> ํ† ํฐ์„ ์‚ฌ์šฉํ•˜์—ฌ ์‹ค์ œ ๋ณด์•ˆ ๊ตฌํ˜„์„ ๋ณผ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ํ•˜์ง€๋งŒ ์ง€๊ธˆ์€ ํ•„์š”ํ•œ ์„ธ๋ถ€ ์ •๋ณด์— ์ง‘์ค‘ํ•˜๊ฒ ์Šต๋‹ˆ๋‹ค.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top