2016-08-11 7 views
1

Box Api를 사용하여 파일에 댓글을다는 시나리오가 있습니다. Box API를 사용하여 설명을 추가했습니다. 모든 댓글을 표시 할 때 모든 댓글에 대해 동일한 댓글이 달린 사람 이름을 표시합니다.Box Api - 파일을 댓글 한 사용자 세부 정보를 얻는 방법

{ 
    "type": "comment", 
    "id": "1111", 
    "is_reply_comment": false, 
    "message": "Sample Comment 1", 
    "created_by": { 
     "type": "user", 
     "id": "111", 
     "name": "AAA", 
     "login": "[email protected]" 
    }, 
    "created_at": "2016-08-11T00:01:56-07:00", 
    "item": { 
     "id": "78110824178", 
     "type": "file" 
    }, 
    "modified_at": "2016-08-11T00:01:56-07:00" 
} 
{ 
    "type": "comment", 
    "id": "2222", 
    "is_reply_comment": false, 
    "message": "Sample Comment 2", 
    "created_by": { 
     "type": "user", 
     "id": "111", 
     "name": "AAA", 
     "login": "[email protected]" 
    }, 
    "created_at": "2016-08-11T00:01:56-07:00", 
    "item": { 
     "id": "78110824178", 
     "type": "file" 
    }, 
    "modified_at": "2016-08-11T00:01:56-07:00" 
} 

것은으로 의견을 다른 사용자

답변

1

에 대한 주석을 추가 할 수 있도록하십시오

어떻게 박스 API

샘플 주석 목록을 사용하여 댓글을 달았 한 사람 구별하는 코멘트를 추가해야 특정 사용자의 경우 As-User header을 사용할 수 있습니다. 다음은 예입니다.

curl https://api.box.com/2.0/comments \ 
-H "Authorization: Bearer ACCESS_TOKEN" \ 
-H "As-User: USER_ID" \ 
-d '{"item": {"type": "file", "id": "FILE_ID"}, "message": "YOUR_MESSAGE"}' \ 
-X POST