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