...
코드 블럭 | ||
---|---|---|
| ||
import com.kakaogame.KGTPlayer; import com.kakaogame.KGTIdpProfile; KGTIdpProfile idpProfile = KGTPlayer.getCurrentPlayer().getIdpProfile(); |
결제를 위한 계정 정보 아이디 조회하기
...
코드 블럭 | ||
---|---|---|
| ||
import com.kakaogame.KGTPlayer;
import com.kakaogame.KGTResult;
KGTPlayer.paymentUserId(result -> {
if (result.isSuccess()) {
// 요청 성공
String paymentUserId = result.getContent();
} else {
// 요청 실패
}
}); |
시스템 정보
...
언어 코드 가져오기
발췌문 삽입 | ||||||||
---|---|---|---|---|---|---|---|---|
|
...