- Sort Score
- Num 10 results
- Language All
Results 11 - 18 of 18 for token_type (0.14 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/pt/docs/tutorial/security/simple-oauth2.md
Created: 2026-04-05 07:19 - Last Modified: 2026-03-19 18:20 - 10.2K bytes - Click Count (0) -
docs/ko/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`"여야 합니다. 그리고 액세스 토큰을 포함하는 문자열과 함께 `access_token`이 있어야 합니다. 이 간단한 예제에서는 완전히 안전하지 않고, 동일한 `username`을 토큰으로 반환합니다. /// tip | 팁Created: 2026-04-05 07:19 - Last Modified: 2026-03-20 14:06 - 11.1K bytes - Click Count (0) -
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());
Created: 2026-03-31 13:07 - Last Modified: 2026-03-13 23:01 - 10.7K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/checkstyle/MissingJavadocTypeCheck.java
} @Override public int[] getAcceptableTokens() { return new int[] { TokenTypes.INTERFACE_DEF, TokenTypes.CLASS_DEF, TokenTypes.ENUM_DEF, TokenTypes.ANNOTATION_DEF, TokenTypes.RECORD_DEF }; } @Override public int[] getRequiredTokens() { return CommonUtil.EMPTY_INT_ARRAY; }Created: 2026-04-08 16:19 - Last Modified: 2021-06-10 23:06 - 5.5K bytes - Click Count (0) -
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{
Created: 2026-04-05 19:28 - Last Modified: 2025-10-15 17:00 - 103.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
attributes.put("accesstoken", tr.getAccessToken()); attributes.put("refreshtoken", tr.getRefreshToken() == null ? "null" : tr.getRefreshToken()); attributes.put("tokentype", tr.getTokenType()); attributes.put("expire", tr.getExpiresInSeconds()); attributes.put("jwtheader", jwtHeader); attributes.put("jwtclaim", jwtClaim);
Created: 2026-03-31 13:07 - Last Modified: 2025-12-14 01:18 - 16.5K bytes - Click Count (0) -
api/go1.txt
pkg syscall (windows-386), const TokenSessionReference ideal-int pkg syscall (windows-386), const TokenSource ideal-int pkg syscall (windows-386), const TokenStatistics ideal-int pkg syscall (windows-386), const TokenType ideal-int pkg syscall (windows-386), const TokenUIAccess ideal-int pkg syscall (windows-386), const TokenUser ideal-int pkg syscall (windows-386), const TokenVirtualizationAllowed ideal-int
Created: 2026-04-07 11:13 - Last Modified: 2013-08-14 18:58 - 1.7M bytes - Click Count (0) -
api/go1.1.txt
pkg syscall (windows-386), const TokenSessionReference = 14 pkg syscall (windows-386), const TokenSource = 7 pkg syscall (windows-386), const TokenStatistics = 10 pkg syscall (windows-386), const TokenType = 8 pkg syscall (windows-386), const TokenUIAccess = 26 pkg syscall (windows-386), const TokenUser = 1 pkg syscall (windows-386), const TokenVirtualizationAllowed = 23
Created: 2026-04-07 11:13 - Last Modified: 2022-03-31 20:37 - 2.6M bytes - Click Count (0)