Get User's Posts API
이 API는 특정 사용자의 모든 포스트 정보를 가져오는 데 사용됩니다.
GET /users/{id}/posts
없음
없음
Content-Type: application/json
{
"posts": [
{
"id": 1,
"title": "Post Title 1",
"content": "Post content 1"
},
{
"id": 2,
"title": "Post Title 2",
"content": "Post content 2"
}
]
}
GET /users/123/posts
HTTP/1.1 200 OK
Content-Type: application/json
{
"posts": [
{
"id": 1,
"title": "Post Title 1",
"content": "Post content 1"
},
{
"id": 2,
"title": "Post Title 2",
"content": "Post content 2"
}
]
}
이 API는 SSL/TLS를 통해 암호화된 연결을 사용합니다.
이 API는 인증이 필요하지 않습니다.
이 API는 1분당 최대 1000개의 요청을 허용합니다.
현재 버전: v1