Join Kakao Guild Chat Room
POST /v2/relation/kakao/join_guild
This interface allows users to join the Kakao guild chat room.
Request Parameters
For the query parameters for interface calls, see Query Parameters.
| Parameters | Type | Description | Note |
|---|---|---|---|
| openid | string | Player Network SDK user identification | Required |
| token | string | Player Network SDK token | Required |
| guildId | string | Guild ID in the game | Required |
| guildName | string | Guild name (set as the guild chat room name) | Required |
| nickName | string | Game nickname of the player joining the guild chat room | Required |
| worldId | string | Region server ID distributed by the game server | Optional |
| profileImage | string | Link to the avatar of the player's game account joining the guild chat room | Optional |
Request example
curl -sS -X POST -H 'Content-Type: application/json' 'https://test.intlgame.com/v2/relation/kakao/join_guild?gameid=11&channelid=35&os=3&sdk_version=2.0&source=0&ts=&sig=1231231' -d '{"token":"a17106cdb5f4789e1ee9bc148b298e515f4917c8","openid":"67733109145611","guildId":"test-guildid","guildName":"test-guildname","nickName":"test-nickName"}'
Return Parameters
| Parameters | Type | Description |
|---|---|---|
| ret | uint | Return code 0: Success Others: Failure |
| msg | string | Detailed information of the result |
Return Sample
{
"msg": "success",
"ret": 0,
"seq": "1650875653-0180225064-031744-0000002245"
}