Methods
These are the methods provided by the Wepin Android Login Library.
Methods can be used after initialization of Wepin Login Library.
loginWithOauthProvider
An in-app browser will open and proceed to log in to the OAuth provider. To retrieve Firebase login information, you need to execute either the loginWithIdToken() or loginWithAccessToken() method.
Parameters
params
<LoginOauth2Params>provider
<'google'|'naver'|'discord'|'apple'> - Provider for loginclientId
<String>
Returns
CompletableFuture<LoginOauthResult>
provider
<String> - login providertoken
<String> - accessToken (if provider is "naver" or "discord") or idToken (if provider is "google" or "apple")type
<OauthTokenType> - type of token
Exception
Example
signUpWithEmailAndPassword
Sign up for Wepin Firebase with an email and password. For users who have not yet registered, a verification email will be sent, and a REQUIRED_EMAIL_VERIFIED
error will occur if verification is required. If the user is already registered, an EXISTED_EMAIL
error will occur, and you should proceed with the login process by calling loginWithEmailAndPassword. Upon successful login, Firebase login information is returned.
Parameters
params
<LoginWithEmailParams>email
<String> - User emailpassword
<String> - User passwordlocale
<String> - optional Language for the verification email (default value: "en")
Returns
CompletableFuture<LoginResult>
provider
<Providers.EMAIL>token
<FBToken>idToken
<String> - wepin firebase idTokenrefreshToken
` - wepin firebase refreshToken
Exception
Example
loginWithEmailAndPassword
This method logs in to the Wepin Firebase using your email and password. It returns Firebase login information upon successful login.
Parameters
params
<LoginWithEmailParams>email
<String> - User emailpassword
<String> - User password
Returns
CompletableFuture<LoginResult>
provider
<Providers.EMAIL>token
<FBToken>idToken
<String> - wepin firebase idTokenrefreshToken
` - wepin firebase refreshToken
Exception
Example
loginWithIdToken
This method logs in to the Wepin Firebase using an external ID token. It returns Firebase login information upon successful login.
Parameters
params
<LoginOauthIdTokenRequest>token
<String> - ID token value to be used for loginsign
<String> - Signature value for the token provided as the first parameter.(Returned value of getSignForLogin())
Returns
CompletableFuture<LoginResult>
provider
<Providers.EXTERNAL_TOKEN>token
<FBToken>idToken
<String> - wepin firebase idTokenrefreshToken
` - wepin firebase refreshToken
Exception
Example
loginWithAccessToken
This method logs in to the Wepin Firebase using an external access token. It returns Firebase login information upon successful login.
Parameters
params
<LoginOauthAccessTokenRequest>provider
<"naver"|"discord"> - Provider that issued the access tokenaccessToken
<String> - Access token value to be used for loginsign
<String> - Signature value for the token provided as the first parameter. (Returned value of getSignForLogin())
Returns
CompletableFuture<LoginResult>
provider
<Providers.EXTERNAL_TOKEN>token
<FBToken>idToken
<String> - wepin firebase idTokenrefreshToken
` - wepin firebase refreshToken
Exception
Example
getRefreshFirebaseToken
This method retrieves the current firebase token's information from the Wepin.
Parameters
void
Returns
CompletableFuture<LoginResult>
provider
<Providers>token
<FBToken>idToken
<String> - wepin firebase idTokenrefreshToken
` - wepin firebase refreshToken
Exception
Example
loginWepin
This method logs the user into the Wepin application using the specified provider and token.
Parameters
The parameters should utilize the return values from the loginWithEmailAndPassword()
, loginWithIdToken()
, and loginWithAccessToken()
methods within this module.
<LoginResult>
provider <Providers>
token <FBToken>
idToken <String> - Wepin Firebase idToken
refreshToken<String> - Wepin Firebase refreshToken
Returns
CompletableFuture<WepinUser> - A promise that resolves to an object containing the user's login status and information. The object includes:
status <'success'|'fail'> - The login status.
userInfo <UserInfo> optional - The user's information, including:
userId <String> - The user's ID.
email <String> - The user's email.
provider <'google'|'apple'|'naver'|'discord'|'email'|'external_token'> - The login provider.
use2FA <Boolean> - Whether the user uses two-factor authentication.
walletId <String> = The user's wallet ID.
userStatus: <UserStatus> - The user's status of wepin login. including:
loginStats: <'complete' | 'pinRequired' | 'registerRequired'> - If the user's loginStatus value is not complete, it must be registered in the wepin.
pinRequired?:
token: <Token> - The user's token of wepin.
accessToken: <String>
refreshToken <String>
Exception
Example
getCurrentWepinUser
This method retrieves the current logged-in user's information from the Wepin.
Parameters
void
Returns
CompletableFuture<WepinUser> - A promise that resolves to an object containing the user's login status and information. The object includes:
status <'success'|'fail'> - The login status.
userInfo <UserInfo> optional - The user's information, including:
userId <String> - The user's ID.
email <String> - The user's email.
provider <'google'|'apple'|'naver'|'discord'|'email'|'external_token'> - The login provider.
use2FA <Boolean> - Whether the user uses two-factor authentication.
walletId <String> = The user's wallet ID.
userStatus: <UserStatus> - The user's status of wepin login. including:
loginStats: <'complete' | 'pinRequired' | 'registerRequired'> - If the user's loginStatus value is not complete, it must be registered in the wepin.
pinRequired?:
token: <Token> - The user's token of wepin.
accessToken: <String>
refreshToken <String>
Exception
Example
logoutWepin
This method logs out the user logged into Wepin.
Parameters
void
Returns
CompletableFuture<Boolean>
Exception
Example
getSignForLogin
Generates signatures to verify the issuer. It is mainly used to generate signatures for login-related information such as ID tokens and access tokens.
Parameters
privKey
<String> - The authentication key used for signature generation.message
<String> - The message or payload to be signed.
The key for signing can be obtained from Wepin Workspace. In the Development Tools menu, click Get your authentication key on the Login tab to retrieve the authentication key.
Returns
String - The generated signature.
The authentication key (privKey
) must be stored securely and must not be exposed to the outside. It is recommended to execute the getSignForLogin()
method on the backend rather than the frontend for enhanced security and protection of sensitive information.
Example
finalize
This method finalizes the Wepin Login Library.
Parameters
void
Returns
void
Example
Wepin Error
INVALID_APP_KEY
"Invalid app key"
The Wepin app key is invalid.
INVALID_PARAMETER
`
"Invalid parameter"
One or more parameters provided are invalid or missing.
INVALID_LOGIN_PROVIDER
"Invalid login provider"
The login provider specified is not supported or is invalid.
INVALID_TOKEN
"Token does not exist"
The token does not exist.
INVALID_LOGIN_SESSION
"Invalid Login Session"
The login session information does not exist.
NOT_INITIALIZED_ERROR
"Not initialized error"
The WepinLoginLibrary has not been properly initialized.
ALREADY_INITIALIZED_ERROR
"Already initialized"
The WepinLoginLibrary is already initialized, so the logout operation cannot be performed again.
NOT_ACTIVITY
"Context is not activity"
The Context is not an activity
USER_CANCELLED
"User cancelled"
The user has cancelled the operation.
UNKNOWN_ERROR
"An unknown error occurred"
An unknown error has occurred, and the cause is not identified.
NOT_CONNECTED_INTERNET
"No internet connection"
The system is unable to detect an active internet connection.
FAILED_LOGIN
"Failed to Oauth log in"
The login attempt has failed due to incorrect credentials or other issues.
ALREADY_LOGOUT
"Already Logout"
The user is already logged out, so the logout operation cannot be performed again.
INVALID_EMAIL_DOMAIN
"Invalid email domain"
The provided email address's domain is not allowed or recognized by the system.
FAILED_SEND_EMAIL
"Failed to send email"
The system encountered an error while sending an email. This is because the email address is invalid or we sent verification emails too often. Please change your email or try again after 1 minute.
REQUIRED_EMAIL_VERIFIED
"Email verification required"
Email verification is required to proceed with the requested operation.
INCORRECT_EMAIL_FORM
"Incorrect email format"
The provided email address does not match the expected format.
INCORRECT_PASSWORD_FORM
"Incorrect password format"
The provided password does not meet the required format or criteria.
NOT_INITIALIZED_NETWORK
"Network Manager not initialized"
The network or connection required for the operation has not been properly initialized.
REQUIRED_SIGNUP_EMAIL
"Email sign-up required."
The user needs to sign up with an email address to proceed.
FAILED_EMAIL_VERIFIED
"Failed to verify email."
The WepinLoginLibrary encountered an issue while attempting to verify the provided email address.
FAILED_PASSWORD_SETTING
"Failed to set password."
The WepinLoginLibrary failed to set the password.
EXISTED_EMAIL
"Email already exists."
The provided email address is already registered in Wepin.
Last updated