回复文档

POST /apiv2/posts/{posts_id}/comments.json
调用权限

all users

curl 示例
curl https://{subdomain}.kf5.com/apiv2/posts/{posts_id}/comments.json \
  -H "Content-Type: application/json" -d '{"post_comment": {"content": "this is api test content"}}' \
  -v -u {email_address}:{password} -X POST
返回示例
Status: 201 Created{
  "post_comment": {
      "id": 331,
      "content": "this is api test content",
      ...  }}