<aside>

The STOVE platform for games provides integrated services. All processes of game release, including game distribution and sales, community, and indicator analysis, can be handled in one-stop. With the PC SDK (Unity, hereafter referred to as PC SDK), you can easily integrate the services provided by the Stove platform into your game.

</aside>

<aside>

Prerequisite

</aside>

SDK Integration


<aside> 💡 If this is the first time you are trying to integrate PC SDK, please read Unity (Follow Through) first.

If you have trouble with integration, consider using Integration Kit, on the right.

</aside>

<aside> 📢 For games with online feature, you must integrate the following

1) Prevention of excessive immersion in games (click here) 2) Shutdown ⇒ only for games with age rating of below 19. (click here)

If you have any questions, feel free to contact STOVE Store Support.

</aside>

<aside>

Preparation

</aside>

<aside>

Integration

</aside>

<aside>

Checking Errors

</aside>

<aside>

Game Support Service (Stats, Achievements, Leaderboard)

</aside>

<aside>

In-Game Purchase

</aside>

<aside>

Matchmaking

</aside>

<aside>

Additional Services

</aside>

<aside>

Pop-ups (Optional)

</aside>

🆕 SDK Toolkit


Get User Information

You can get user information via object shown below.

StoveManager.User

Get User Member No.

StoveManager.User.MemberNo

Get User Nickname

StoveManager.User.Nickname

Get User GUID

StoveManager.User.GameUserID

Get Access Token

StoveManager.Token.AccessToken

Retrieve User Profile Image

For retrieving user profile image, you need to fetch it via API endpoint.

domain: <https://api.onstove.com>

GET /postie/v1.0/user/{member_no}

Request
Header
- Authorization: {access_token}

Response
{
  "code" : 0,
  "message" : "success",
  "value" : {
    "user_id" : "123456789",
    "nickname" : "John Doe",
    "profile_img" : "<http://image-dev.onstove.com/180x180/http://d2eq8hyjn4yxr6.cloudfront.net/dev/member_no/301028/application_no/53042/timeline/undefined/file_name.jpg>",
    "score" : 12
  }
}

Achievement Integration