-
Notifications
You must be signed in to change notification settings - Fork 0
홈 정보 조회
Haely edited this page Nov 12, 2021
·
2 revisions
[GET] ~/vinyls/home
메소드 | 파라미터 | 설명 |
---|---|---|
Content-Type | application/json | |
token | {token} | 토큰 |
변수명 | 설명 |
---|---|
myVinyl | 마이 바이닐(1개) |
recentVinyls | 최근 바이닐(최대 4개) - 배열 |
------- | --------------- |
vinylIdx | 바이닐 인덱스 넘버 |
title | 바이닐 타이틀 |
imageUrl | 바이닐 커버 이미지 |
artist | 바이닐의 아티스트명 |
rate | 바이닐 평점 |
rateCount | 평가 수(평점의 개수) |
id | 바이닐의 Discogs 자체 id |
year | 발매년도 |
------- | --------------- |
userInfo | 유저 정보 |
------- | --------------- |
nickname | 유저 닉네임 |
profileUrl | 유저의 프로필 사진 |
userIdx | 유저의 인덱스 |
instaId | 유저의 인스타그램 아이디 |
rankIdx | 유저 랭킹의 인덱스 |
vinylNum | 유저가 보유하고 있는 총 바이닐 개수 |
sns | 유저가 회원가입한 소셜 로그인 종류 |
------- | --------------- |
rankInfo | 유저의 랭킹 정보 |
------- | --------------- |
rankIdx | 유저의 랭킹 인덱스 |
rankName | 유저의 랭킹 이름 |
rankImg | 유저의 랭킹 아이콘 이미지 |
------- | --------------- |
genreInfo | 유저의 장르(가장 많이 보유한 바이닐의 장르. 가장 많은 장르가 동수일 때, 배열 길이가 2 이상일 수 있음) |
{
"status": 200,
"success": true,
"message": "홈 정보 조회 성공",
"data": {
"myVinyl": {
"vinylIdx": 7,
"title": "스무 살의 봄",
"imageUrl": "http://img4.tmon.kr/cdn3/deals/2021/04/08/5740542934/front_04e49_xyask.jpg",
"artist": "IU (3)",
"rate": 8,
"rateCount": 1,
"id": 8103400,
"year": 2012
},
"recentVinyls": [
{
"vinylIdx": 8,
"title": "A Single Man",
"imageUrl": null,
"artist": "Elton John",
"rate": 6,
"rateCount": 1,
"id": 594318,
"year": 1978
},
{
"vinylIdx": 9,
"title": "Single Cell Orchestra",
"imageUrl": null,
"artist": "Single Cell Orchestra",
"rate": 6,
"rateCount": 1,
"id": 2726,
"year": 1996
},
{
"vinylIdx": 10,
"title": "Orange",
"imageUrl": null,
"artist": "Jon Spencer Blues Explosion, The",
"rate": 3,
"rateCount": 1,
"id": 1733106,
"year": 1994
},
{
"vinylIdx": 11,
"title": "From Here To Now",
"imageUrl": null,
"artist": "Diego",
"rate": 3,
"rateCount": 1,
"id": 17331,
"year": 2000
}
],
"userInfo": [
{
"userIdx": 3,
"nickname": "test",
"profileUrl": "image.jpg",
"instaId": "test_insta",
"rankIdx": 1,
"vinylNum": 5,
"sns": "Google"
}
],
"rankInfo": [
{
"rankIdx": 1,
"rankName": "닐페이스",
"rankImg": "img1"
}
],
"genreInfo": [
"Pop",
"Rock"
]
}
}
{
"status": 400,
"success": false,
"message": "홈 정보 조회 실패"
}
-
User
-
Vinyl
-
Request