Authentication Service Interface.
More...
#include <auth_service_interface.h>
Authentication Service Interface.
Definition at line 185 of file auth_service_interface.h.
◆ GetAccountInfo()
Get login account information.
- Returns
- If you has logged in your account successfully, the return value is a pointer to IAccountInfo, otherwise is nullptr.
◆ GetAuthResult()
virtual AuthResult IAuthService::GetAuthResult |
( |
| ) |
|
|
pure virtual |
Get authentication status.
- Returns
- The return value is authentication status. To get extended error information, see AuthResult enum.
◆ GetLoginStatus()
Get login status.
- Returns
- The return value is login status. To get extended error information, see LOGINSTATUS enum.
◆ GetSDKIdentity()
virtual const zchar_t * IAuthService::GetSDKIdentity |
( |
| ) |
|
|
pure virtual |
Get SDK identity.
- Returns
- The SDK identity.
◆ LogOut()
virtual SDKError IAuthService::LogOut |
( |
| ) |
|
|
pure virtual |
Account logout.
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ SDKAuth()
SDK Authentication with jwt token.
- Parameters
-
authContext | The parameter to be used for authentication SDK, see AuthContext structure. |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
◆ SetEvent()
Set the authentication service callback event handler.
- Parameters
-
pEvent | A pointer to receive authentication event. |
- Returns
- If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.