Skip to main content

Real-Name Authentication (Korea)

LI PASS provides a standardized compliance solution package, allowing businesses to directly configure compliance services without needing to integrate the interfaces mentioned in this document once integrated with LI PASS.For businesses integrating LI PASS, you can contact the Player Network assistant for more details.

For businesses not using the standard LI PASS compliance solution, please follow the instructions in this document to implement the real-name authentication service for PC games in Korea.

Prerequisites

Real-name authentication services are linked with parental authentication services for minors.Before using the real-name authentication service, you must first implement the parental authentication service for minors.

Implement the Real Name Authentication feature

Add real-name authentication logic when checking the parental authentication status for minors.When checking the player's country/region in the ComplianceResult data structure, verify whether real-name authentication is required.If it is required, proceed with the following real-name authentication logic.Otherwise, continue with the logic for Minor Parent Authentication.

RealNameVerification

  1. Invoke ComplianceQueryUserInfo to query the player's compliance status and determine the need for real-name authentication.
  2. If real-name authentication is required, invoke ComplianceVerifyRealName to open the real-name authentication page, which is implemented by the website.
  3. Verify the result of the real-name authentication in the ComplianceResult data structure.
    If real-name authentication fails, exit the game.
  4. If real-name authentication is successful, continue to check the player's adult status.
    Adult players can directly enter the game.
  5. If the player is under the game's rating age, exit the game immediately.
  6. If the Player is a minor, continue with the logic for Minor Parent Authentication.
  7. Check the parental consent status in the ComplianceResult data structure.If parental consent is obtained, enter the game.Otherwise, exit the game.