노래 추천 결과 조회 POST /api/music
Request
upload_image(이미지 파일)
genre(장르)
Response
이미지 전송 실패
{
"status": "error",
"message": "No image provided"
}
성공
{
"status": "success",
"image": "/media/image/exp2.jpg",
"music": [
{ "title": "Still Yours (feat. Big Sean)",
"image_album": "<https://i.scdn.co/image/ab67616d0000b273cc5a0e69d80edf1cd1ef4dad>",
"file": "<https://p.scdn.co/mp3-preview/6c20cdbefd3a06583e5065a58ca7d022712c5b25?cid=189ac73270fc4c9fafc4bd9fff449099>",
"artist": "Bryson Tiller",
"title_album": "A N N I V E R S A R Y (Deluxe)",
"id": "0vaurfXBWA3owUdvkfhEGy",
"duration": 186413},
{ "title": "Love Season",
"image_album": "<https://i.scdn.co/image/ab67616d0000b273fe5ba7264f783188e92ba8cf>",
"file": "<https://p.scdn.co/mp3-preview/bce94363fd7fa0e01f251f1a4524c1a2e5a22109?cid=189ac73270fc4c9fafc4bd9fff449099>",
"artist": "J Boog",
"title_album": "Hear Me Roar",
"id": "1cPx0CdoN55jpm0Z7hG4Mt",
"duration": 226905}
}
]
플레이리스트 저장 - POST /api/save
Request
{
"user_id":1,
"name":"playlist1",
"tag":"genre",
"songs": [
{"id":"4Gmdm6oRVwJgsM8gYnwRoE",
"title":"Tenth Avenue Freeze-Out",
"artist":"Bruce Springsteen",
"duration":190466,
"file":"<https://p.scdn.co/mp3-preview/0e7f39a9c6c767007ed8fad3cbc277f4f0fc429c?cid=c6cb940d34be48a4ba99edee4d43fc63>",
"title_album":"Born To Run",
"image_album":"<https://i.scdn.co/image/ab67616d0000b273503143a281a3f30268dcd9f9>"}
,
{"id":"0pAPFaE1Iwfvex9EVJuQlG",
"title":"Control (Somehow You Want Me)",
"artist":"Tenth Avenue North",
"duration":248733,
"file":"<https://p.scdn.co/mp3-preview/7be1d3ba854aacf7d0a1ac2f9140685bc8038245?cid=c6cb940d34be48a4ba99edee4d43fc63>",
"title_album":"Followers",
"image_album":"<https://i.scdn.co/image/ab67616d0000b27369fa55f10c5293bbb985c1af>"}
]
}
Response
user가 없을 경우(로그인이 안 된 경우)
{
"status": "error",
"message": "You need to login first"
}
-request에 songs 목록이 있으면
{"status": "success", "message": "successfully saved"}
-request에 songs 목록이 없으면
"status":"error",
"message":"no songs data"
request
{
"user_id": 1
}
response
{
"username": "harry",
"playlist": [
{
"id": 27,
"name": "playlist1",
"tag": "genre"
},
{
"id": 28,
"name": "rock playlist",
"tag": "rock"
}
],
"image": [
{
"27": [
"<https://i.scdn.co/image/ab67616d0000b273503143a281a3f30268dcd9f9>",
"<https://i.scdn.co/image/ab67616d0000b27369fa55f10c5293bbb985c1af>"
]
},
{
"28": [
"<https://i.scdn.co/image/ab67616d0000b2733efcd243aaa5638f55318f91>",
"<https://i.scdn.co/image/ab67616d0000b27343294cfa2688055c9d821bf3>",
"<https://i.scdn.co/image/ab67616d0000b273dcd829318f889df294d2bb7a>",
"<https://i.scdn.co/image/ab67616d0000b27336572e6726714544f5bed456>"
]
}
]
}
플레이리스트 1개 조회(곡 목록) GET /api/playlist/{playlist_id}
Request
없음
Response
[
{
"id": "0pAPFaE1Iwfvex9EVJuQlG",
"title": "Control (Somehow You Want Me)",
"artist": "Tenth Avenue North",
"duration": 248733,
"file": "<https://p.scdn.co/mp3-preview/7be1d3ba854aacf7d0a1ac2f9140685bc8038245?cid=c6cb940d34be48a4ba99edee4d43fc63>",
"title_album": "Followers",
"image_album": "<https://i.scdn.co/image/ab67616d0000b27369fa55f10c5293bbb985c1af>"
},
{
"id": "4Gmdm6oRVwJgsM8gYnwRoE",
"title": "Tenth Avenue Freeze-Out",
"artist": "Bruce Springsteen",
"duration": 190466,
"file": "<https://p.scdn.co/mp3-preview/0e7f39a9c6c767007ed8fad3cbc277f4f0fc429c?cid=c6cb940d34be48a4ba99edee4d43fc63>",
"title_album": "Born To Run",
"image_album": "<https://i.scdn.co/image/ab67616d0000b273503143a281a3f30268dcd9f9>"
}
]