메서드
Wepin PIN Pad SDK 초기화 이후 사용할 수 있습니다.
login
Available Methods
Example
// Login using an OAuth provider
const oauthResult = await wepinPin.login.loginWithOauthProvider({
provider: 'google',
clientId: 'your-client-id',
});
// Sign up and log in using email and password
const signUpResult = await wepinPin.login.signUpWithEmailAndPassword(
'[email protected]',
'password123'
);
// Log in to Wepin
const wepinLoginResult = await wepinPin.login.loginWepin(signUpResult);
// Get the currently logged-in user
const currentUser = await wepinPin.login.getCurrentWepinUser();
// Logout
await wepinPin.login.logout();generateRegistrationPINBlock
Parameters
Return value
Example
generateAuthPINBlock
Parameters
Return value
Example
generateChangePINBlock
Parameters
Return value
Example
generateAuthOTPCode
arameters
Return value
Example
finalize
Parameters
Return value
Example
WepinError
Error Code
Description
Last updated
Was this helpful?