Open thdduddn96 opened 4 years ago
GET api/article: Response with a JSON having a list of dictionaries for each article's
title
,content
, andauthor
. The value of the author must be the id of the author but not her username.
첨언을 하자면, GET의 경우엔 id
를 포함하셔도 되고 포함 하지 않으셔도 됩니다.
POST api/article: Create an article with the information given by request JSON body and response with 201. Posted article (with its assigned id) should be included in response's content as JSON format.
POST의 경우엔 assigned id를 포함하라고 했기 때문에 id를 넣어주셔야 합니다. e.g. {"id": 1, "title": "test", "content": "test", "author": 1}
article을 GET이나 POST할 때 response되는 json 파일의 key 값이 현재 id, title, content, author_id 로 나오는데,
를 알고 싶습니다.