-
Methods in sh.ory.api that return types with arguments of type Session
| Modifier and Type |
Method |
Description |
ApiResponse<Session> |
V0alpha2Api.adminExtendSessionWithHttpInfo(String id) |
Calling this endpoint extends the given session ID.
|
List<Session> |
V0alpha2Api.adminListIdentitySessions(String id,
Long perPage,
Long page,
Boolean active) |
This endpoint returns all sessions that belong to the given Identity.
|
ApiResponse<List<Session>> |
V0alpha2Api.adminListIdentitySessionsWithHttpInfo(String id,
Long perPage,
Long page,
Boolean active) |
This endpoint returns all sessions that belong to the given Identity.
|
List<Session> |
V0alpha2Api.listSessions(String xSessionToken,
String cookie,
Long perPage,
Long page) |
This endpoints returns all other active sessions that belong to the logged-in user.
|
ApiResponse<List<Session>> |
V0alpha2Api.listSessionsWithHttpInfo(String xSessionToken,
String cookie,
Long perPage,
Long page) |
This endpoints returns all other active sessions that belong to the logged-in user.
|
ApiResponse<Session> |
V0alpha2Api.toSessionWithHttpInfo(String xSessionToken,
String cookie) |
Check Who the Current HTTP Session Belongs To
Uses the HTTP Headers in the GET request to determine (e.g.
|
Method parameters in sh.ory.api with type arguments of type Session
| Modifier and Type |
Method |
Description |
okhttp3.Call |
V0alpha2Api.adminExtendSessionAsync(String id,
ApiCallback<Session> _callback) |
Calling this endpoint extends the given session ID.
|
okhttp3.Call |
V0alpha2Api.adminListIdentitySessionsAsync(String id,
Long perPage,
Long page,
Boolean active,
ApiCallback<List<Session>> _callback) |
This endpoint returns all sessions that belong to the given Identity.
|
okhttp3.Call |
V0alpha2Api.listSessionsAsync(String xSessionToken,
String cookie,
Long perPage,
Long page,
ApiCallback<List<Session>> _callback) |
This endpoints returns all other active sessions that belong to the logged-in user.
|
okhttp3.Call |
V0alpha2Api.toSessionAsync(String xSessionToken,
String cookie,
ApiCallback<Session> _callback) |
Check Who the Current HTTP Session Belongs To (asynchronously)
Uses the HTTP Headers in the GET request to determine (e.g.
|
-