回复文档
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",
... }}