-
Notifications
You must be signed in to change notification settings - Fork 4
특정 미술작품 조회
dayoung edited this page Jan 6, 2019
·
18 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /artworks/{a_idx} | 특정 미술작품 조회 |
Content-Type: application/json
Authorization: token
{
"status": 200,
"message": "컨텐츠 조회 성공",
"data": {
"a_idx": 6,
"a_name": "태초적인",
"a_width": 162,
"a_height": 112,
"a_depth": 1,
"a_price": 350000,
"a_like_count": 3,
"a_detail": "사람들은 아름다운 것을 좋아하고 외적으로 더 보여주고 싶어한다. 원래 아름다웠던\n풍경 이었지만 그 풍경 가운데에 사람 태초의 모습인 해골을 그리면서\n아름다웠던 풍경도 조금씩 같이 무너지고 피폐 해진다. \n태초적인 모습이라도 충분히 그 안에 본질적인 가치가 있다",
"a_date": "2018-11-23T00:00:00.000+0000",
"a_year": "2017",
"pic_url": "https://s3.ap-northeast-2.amazonaws.com/project-artoo/woman_in_blue.png",
"a_material": "캔버스에 유화",
"a_expression": "테레핀을 물감에 부어서 물감을 흘러내리게 하였다.",
"a_purchaseState": 1,
"u_idx": 7,
"u_name": "김자현",
"u_school": "고려대학교",
"auth": false,
"islike": false,
"a_license": "저작자표시-비영리",
"a_size": 18144,
"a_active": false
}
}
*변수에 대한 설명(보내야하는게 아님)
변수 | 타입 | 설명 |
---|---|---|
a_idx | int | 작품 고유 인덱스 |
a_name | String | 작품 이름 |
a_width | int | 작품 가로 |
a_height | int | 작품 세로 |
a_depth | int | 작품 높이 |
a_price | int | 작품 가격 |
a_like_count | int | 작품 좋아요 수 |
a_detail | String | 작품 |
a_date | Date | 작품 생성시간 |
a_year | String | 작품제작년도 |
pic_url | String | 작품 사진 url |
a_material | String | 작품 재료 |
a_expression | Strikng | 작품 표현기법 |
a_purchaseState | Int | 0-비구매 1-구매 2-판매완료 |
u_idx | Int | 유저 인덱스 |
u_name | String | 유저 이름 |
u_school | String | 유저 학교 |
auth | Boolean | 수정삭제권한 |
islike | Boolean | 좋아요 여부 |
a_license | String | 작품 라이센스 |
a_size | Int | 작품 사이즈 |
a_active | boolean | 작품 활성화/비활성화 |
{
"status": 204,
"message": "컨텐츠가 존재하지 않습니다.",
"data": null
}
{
"status": 204,
"message": "사용자가 존재하지 않습니다.",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}