여러분의 게임이 성인 인증이 필요한 게임이라면 HIVE의 성인 인증 기능을 사용하세요. 성인 인증을 하기 위해서는 유저 정보가 필요하므로, 유저를 로그인 시킨 직후 성인 인증을 수행해 주세요.
유저에 대한 성인 인증을 수행하려면 Auth 클래스의 showAdultConfirm()
메서드를 호출하세요.
다음은 유저에게 성인 인증을 요청하는 예제 코드입니다.
Unity®
API Reference: hive.Auth.showAdultConfirm
1 2 3 4 5 6 7 |
using hive; Auth.showAdultConfirm((ResultAPI result) => { if (result.isSuccess()) { // 호출 성공 } }); |
C++
API Reference: Auth::showAdultConfirm
1 2 3 4 5 6 7 8 9 |
#include <HIVE_SDK_Plugin/HIVE_CPP.h> using namespace std; using namespace hive; Auth::showAdultConfirm([=](ResultAPI result) { if(result.isSuccess()){ // 호출 성공 } }); |
Kotlin
API Reference: Auth.showAdultConfirm
1 2 3 4 5 6 7 8 9 10 |
import com.hive.Auth import com.hive.ResultAPI Auth.showAdultConfirm(object: Auth.AuthAdultConfirmListener { override fun onAuthAdultConfirm(result: ResultAPI) { if (result.isSuccess) { // 호출 성공 } } }) |
Java
API Reference: com.hive.Auth.showAdultConfirm
1 2 3 4 5 6 7 8 |
import com.hive.Auth; import com.hive.ResultAPI; Auth.INSTANCE.showAdultConfirm(result -> { if (result.isSuccess()) { // 호출 성공 } }); |
Swift
API Reference: AuthInterface.showAdultConfirm
1 2 3 4 5 6 7 |
import HIVEService AuthInterface.showAdultConfirm() { result in if result.isSuccess() { // 호출 성공 } } |
Objective-C
API Reference: HIVEAuth:showAdultConfirm
1 2 3 4 5 6 7 |
#import <HIVEService/HIVEService-Swift.h> [HIVEAuth showAdultConfirm: ^(HIVEResultAPI *result) { if ([result isSuccess]) { // 호출 성공 } }]; |