Open tippy33 opened 3 years ago
It means that you should include id
, content
, title
, author
in POST, PUT methods of articles and id
, content
, author
, article
in POST, PUT methods of comments.
Hello, I have another question:
Should the author
,article
contain the id or the name(string)?
Thank you.
@hursuhyun I think you can find the answer here : https://github.com/swsnu/swppfall2021/issues/112#issuecomment-951800669
Hello, while I was doing hw4, I wanted to make sure of the JSON format of POST, PUT method in
/api/article/
,/api/article/:article_id/
,/api/article/:article_id/comment/
,/api/comment/:comment_id/
Here, does it mean that I need to include
id
,content
,title
,author
in POST, PUT methods of articles andid
,content
,author
,article
in POST, PUT methods of comments?Or does it mean only
id
,content
,title
in articles andid
,content
in comments? I just wanted to make sure. Thank you very much.