-
Notifications
You must be signed in to change notification settings - Fork 1
[POST] 꿈 기록 작성
Kim HyunJi edited this page May 22, 2021
·
2 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | /api/posts/ | 꿈 기록 작성 |
{
"Content-Type": "application/json",
"x-auth-token" : "{jwt}"
}
key | 설명 | 타입 | 비고 |
---|---|---|---|
content |
꿈 기록 내용 | String |
Not Null |
emoji |
꿈에 대한 기분 이모티콘 파일명 | String |
Not Null |
key | 설명 | 타입 | 비고 |
---|---|---|---|
status |
상태 코드 | Number |
|
id |
유저 아이디 | String |
|
date |
꿈 기록 날짜 | String |
|
content |
꿈 기록 내용 | String |
|
emoji |
꿈 기록 이모티콘 파일명 | String |
|
keyword |
꿈 해몽할 키워드 | String |
|
readings |
키워드 해몽 내용 | String |
{
"status": 200,
"data": {
"id": 0,
"date": "2021.05.23",
"content" : "우왕 나 돼지꿈 꿈 ㅋ 부자될건가바",
"emoji": "Emoji.png",
"dreamReadings": [
{
"keyword": "돼지",
"readings": "부자꿈",
}, ...
]
}
}
-
서버 에러
{ "status": 500, "message": "Server Error" }