Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel1

...

/convert/userId

참고) 카카오 ServiceUserId 지원 종료 전까지 임시로 제공하는 API 입니다

Description

카카오 serviceUserId를 카카오 appUserId로 변환합니다.

...

Code Block
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
    "idList":[
        {
            "userId": 2823211994,
            "partnerUserId": "88060333680246128"
        }
    ]
}

 

appUserId를 playerId로 변환하는 법

https://kakaogames.atlassian.net/wiki/spaces/KS3GFC/pages/413468146/6.2.+Server+API+player#/player/getWithIdpId

위 API로 (/player/getWithIdpId)

idpCode는 “kakaocapri“

idpId는 유저의 appUserId를 채워서 호출하시면 됩니다.

/player/getListWithIdpId

위 API를 사용하신다면 idpIds 는 500개 이하로 사용해주세요

fields 값 안에 “IdpId“를 넣어서 호출하면 idpId값도 리턴되는데 그 값이 appUserId 입니다.

요청시 해더의 playerId는 필요없으니 참고 바랍니다.

...