Search posts by tags API
게시글 목록 조회
Last updated
게시글 목록 조회
Last updated
Req
POST /posts
Content-Type: Application/json
{
"title": "Java",
"content": "it's programming language",
"tags": ["Programming", "Language"],
"userId": 1
}
Res (Success)
HTTP/1.1 201 Created
{
"postId": 1,
"title": "Java",
"tags": ["Programming", "Language"]
"content": "it's programming language",
"createdAt": "2025-03-17",
"userId" 1
}Req
GET /posts/tags?Programming,Language
Res (Success)
HTTP/1.1 200 OK
[
{
"postId": 1,
"title": "Java",
"tags": ["Programming", "Language"]
"content": "it's programming language",
"createdAt": "2025-03-17",
"userId" 1
}
]