Hub/docs/serverAPI/friends receive list

 

friends/received_list

Description

  • 자신에게 친구를 요청한 사용자 목록을 반환한다.


Parameters

  • count: 최근 몇 명의 친구 신청을 표시할 것인지 설정한다.
{
    "count": 5
}


출력 JSON

  • friend_list : 친구 목록 (objects array)
    • 각 object 내 property
    • uid : 허브 UID (string)
  • id : 로그인 ID (string)
  • name : 사용자가 입력한 이름 또는 facebook name (string, 설정 안되었으면 null)
    • picture : 프로필 이미지 URL
      • 업로드된 이미지의 경우 URL 끝에 ?1234567 형태로 업로드된 시각의 unix timestamp 가 붙음. 이를 가지고 마지막 업로드 시간을 확인할 수 있음
    • country : 국가 (string)
    • gender : 성별 (string, 설정 안되었으면 null)
  • is_test_account : 테스트 계정 여부 (1일 경우 테스트 계정, 0인 경우 일반 계정)
{
    "type": "friends/receive_list",
    "error_code": 0,
    "receive_list": [
        {
            "uid": "27886325",
            "id": "stseira64",
            "name": null,
            "picture": "http://image.com2us.com/hubweb/avatar_img/public/default2.png",
            "country": "KR",
            "gender":"M",
            "is_test_account":"0"
        }
    ]
}


Related Method