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