从社交网络提供商获取用户的好友列表。
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
}