Open HyesunKwak opened 4 years ago
저도 같은 내용이 궁금합니다. POST와 PUT의 request JSON 형식은 명확하게 표현이 되어있는데 response의 JSON 형식은 다소 명확하지 못한 것 같습니다. GET /api/article
의 response에는 id
가 없지만 PUT
과 POST /get/article
은 id
를 넣는 것이 맞는 것인지도 궁금합니다.
과제 스펙 중 다음 내용과 같이 id로 처리하시면 됩니다.
The value of the
author
must be the id of the author but not her username.
Json response는 과제 스펙의 내용을 따라 주시면 됩니다.
GET api/article: Response with a JSON having a list of dictionaries for each article's title, content, and author. The value of the author must be the id of the author but not her username.
POST api/article: Create an article with the information given by request JSON body and response with 201. Posted article (with it's assigned id) should be included in response's content as JSON format.
안녕하세요, article이나 comment를 post할 때 response 관련하여 질문드립니다.
article post에서 response content의 key가 'id', 'title', 'content', 'author'이고, 'author'에는 author id가 반환되면 되나요? comment도 마찬가지로 'article'와 'author'가 각각 id로 들어가면 되는지 궁금합니다.