소셜 서비스 공급자로부터 사용자의 친구 목록을 가져옵니다.
platform | string 게시자 계정 > 내 로그인 프로젝트 > 소셜 연결에서 활성화할 수 있도록 선택한 소셜 서비스 공급자의 이름입니다. 지정하지 않으면 이 호출은 모든 소셜 서비스 공급자로부터 친구 정보를 가져옵니다. |
offset | integer >= 0 Default: 0 목록이 생성되는 요소의 수입니다. |
limit | integer [ 1 .. 500 ] Default: 500 한 번에 반환되는 최대 친구 수입니다. |
with_xl_uid | boolean Default: false 소셜 친구가 내 게임에 있는지 여부를 표시합니다. |
확인
인증되지 않음
요청이 너무 많음
curl --request GET \ --url 'https://login.xsolla.com/api/users/me/social_friends?platform=SOME_STRING_VALUE&offset=0&limit=500&with_xl_uid=false' \ --header 'Authorization: Bearer BEARER_TOKEN'
{- "data": [
- {
- "name": "John Smith",
- "platform": "twitter",
- "user_id": "johnsmith007",
- "xl_uid": "2a6e0079-d7a7-11e8-963b-82010aa80778"
}, - {
- "name": "Riley Parker",
- "platform": "vk",
- "user_id": "19932423423424390",
- "xl_uid": "1e6e2979-d7f7-11e8-963b-42010aa80910"
}
], - "limit": 500,
- "offset": 1000,
- "total_count": 4000,
- "with_xl_uid": true
}