Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tokentype (0.04 sec)

  1. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

            String[] tokenTypes = { "Bearer", "JWT", "OAuth", "OAuth2", "APIKey", "Session", "Basic", "Digest", "SAML", "OpenID" };
    
            for (String tokenType : tokenTypes) {
                String message = tokenType + " token is invalid";
                InvalidAccessTokenException exception = new InvalidAccessTokenException(tokenType, message);
    
                assertEquals(tokenType, exception.getType());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    		c.mustListObjects(ctx, minioClient, bucket)
    
    		// Set up revocation
    		user := accessKey
    		tokenType := tc.tokenType
    		reqAdmClient := s.adm
    		if tc.fullRevoke {
    			tokenType = ""
    		}
    		if tc.selfRevoke {
    			user = ""
    			tokenType = ""
    			reqAdmClient, err = madmin.NewWithOptions(s.endpoint, &madmin.Options{
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 100.2K bytes
    - Viewed (1)
  3. docs/en/docs/tutorial/security/simple-oauth2.md

    ///
    
    ## Return the token { #return-the-token }
    
    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.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. docs/sts/wso2.md

      "token_type": "Bearer",
      "expires_in": 3600
    }
    ```
    
    ### 4. JWT Claims
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
Back to top