- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 68 for access_token (0.06 seconds)
-
src/main/resources/fess_indices/fess_config.access_token/access_token.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Created: 2026-03-31 13:07 - Last Modified: 2021-12-02 13:14 - 529 bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.access_token.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Created: 2026-03-31 13:07 - Last Modified: 2021-12-02 13:14 - 173 bytes - Click Count (0) -
src/main/config/es/fess_config_access_token.json
{ "fess_config.access_token" : { "aliases" : { }, "mappings" : { "access_token" : { "properties" : { "createdBy" : { "type" : "keyword" }, "createdTime" : { "type" : "long" }, "expiredTime" : { "type" : "long" }, "name" : { "type" : "keyword" }, "parameter_name" : {Created: 2026-03-31 13:07 - Last Modified: 2021-12-02 13:14 - 1.3K bytes - Click Count (0) -
docs_src/security/tutorial005_an_py310.py
access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES) access_token = create_access_token( data={"sub": user.username, "scope": " ".join(form_data.scopes)}, expires_delta=access_token_expires, ) return Token(access_token=access_token, token_type="bearer") @app.get("/users/me/") async def read_users_me(
Created: 2026-04-05 07:19 - Last Modified: 2026-02-12 18:10 - 5.4K bytes - Click Count (0) -
docs_src/security/tutorial004_py310.py
headers={"WWW-Authenticate": "Bearer"}, ) access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES) access_token = create_access_token( data={"sub": user.username}, expires_delta=access_token_expires ) return Token(access_token=access_token, token_type="bearer") @app.get("/users/me/") async def read_users_me(current_user: User = Depends(get_current_active_user)) -> User:Created: 2026-04-05 07:19 - Last Modified: 2026-02-12 18:10 - 4.1K bytes - Click Count (0) -
samples/slack/src/main/java/okhttp3/slack/OAuthSession.java
public final boolean ok; public final String access_token; public final String scope; public final String user_id; public final String team_name; public final String team_id; public OAuthSession( boolean ok, String accessToken, String scope, String userId, String teamName, String teamId) { this.ok = ok; this.access_token = accessToken; this.scope = scope; this.user_id = userId;
Created: 2026-04-03 11:42 - Last Modified: 2016-10-23 15:24 - 1.4K bytes - Click Count (0) -
docs_src/security/tutorial005_py310.py
Created: 2026-04-05 07:19 - Last Modified: 2026-02-12 18:10 - 5.3K bytes - Click Count (0) -
docs_src/security/tutorial004_an_py310.py
headers={"WWW-Authenticate": "Bearer"}, ) access_token_expires = timedelta(minutes=ACCESS_TOKEN_EXPIRE_MINUTES) access_token = create_access_token( data={"sub": user.username}, expires_delta=access_token_expires ) return Token(access_token=access_token, token_type="bearer") @app.get("/users/me/") async def read_users_me(Created: 2026-04-05 07:19 - Last Modified: 2026-02-12 18:10 - 4.2K bytes - Click Count (0) -
docs_src/security/tutorial003_an_py310.py
hashed_password = fake_hash_password(form_data.password) if not hashed_password == user.hashed_password: raise HTTPException(status_code=400, detail="Incorrect username or password") return {"access_token": user.username, "token_type": "bearer"} @app.get("/users/me") async def read_users_me( current_user: Annotated[User, Depends(get_current_active_user)], ):
Created: 2026-04-05 07:19 - Last Modified: 2025-11-24 19:03 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsAccessTokenBhv.java
return createOptionalEntity(doSelectByPK(id, tp), id); } @Override protected Class<? extends AccessToken> typeOfSelectedEntity() { return AccessToken.class; } @Override protected Class<AccessToken> typeOfHandlingEntity() { return AccessToken.class; } @Override protected Class<AccessTokenCB> typeOfHandlingConditionBean() {
Created: 2026-03-31 13:07 - Last Modified: 2025-03-15 06:53 - 9.9K bytes - Click Count (0)