0
폴더의 공동 작업자 인 그룹의 회원을 나열하는 중 오류가 발생합니다. 다음은 샘플 폴더 공동 작업자가 요청입니다 -상자 API를 통해 공동 작업자 인 그룹의 회원 자격을 나열 할 수 없습니다.
curl https://api.box.com/2.0/folders/1531887577/collaborations -H "Authorization: Bearer ACCESS_TOKEN"
그리고 응답 - 협력자의 목록에서 "IT", "120995"ID와
{
"total_count":6,
"entries":[
{
"type":"collaboration",
"id":"25306820",
"created_by":null,
"created_at":"2012-09-06T09:48:20-07:00",
"modified_at":"2013-10-19T09:37:14-07:00",
"expires_at":null,
"status":"accepted",
"accessible_by":{
"type":"user",
"id":"184577095",
"name":"Clayton C",
"login":"[email protected]"
},
"role":"editor",
"acknowledged_at":"2012-09-06T09:48:20-07:00",
"item":{
"type":"folder",
"id":"379625555",
"sequence_id":"7",
"etag":"7",
"name":"Business"
}
},
.... more users ....,
{
"type":"collaboration",
"id":"39809829",
"created_by":null,
"created_at":"2013-05-27T09:20:32-07:00",
"modified_at":"2013-10-23T04:20:34-07:00",
"expires_at":null,
"status":"accepted",
"accessible_by":{
"type":"group",
"id":"120995",
"name":"IT"
},
"role":"editor",
"acknowledged_at":"2013-05-27T09:20:32-07:00",
"item":{
"type":"folder",
"id":"379625555",
"sequence_id":"7",
"etag":"7",
"name":"NewBusiness"
}
},
.... more groups ....,
]
}
주 그룹을. 이제 그룹 멤버쉽을 신청하십시오.
curl https://api.box.com/2.0/groups/120995/memberships -H "Authorization: Bearer ACCESS_TOKEN"
그리고이 이상한 오류 응답을 받았습니다.
{
"type":"error",
"status":404,
"code":"not_found",
"context_info":{
"errors":[
{
"reason":"invalid_parameter",
"name":"group_tag",
"message":"Invalid value 'g_120995'. 'group_tag' with value 'g_120995' not found"
}
]
},
"help_url":"http:\/\/developers.box.com\/docs\/#errors",
"message":"Not Found",
"request_id":"184613996752e9780c42c3f"
}
누구나 비슷한 행동을 보이고 해결책을 찾았습니까?
/groups//membership endpoint/groups 권한 주위의 버그와 모양이 같습니다. 기업 관리자가 공동 작업자의 사용자 가시성을 해제했거나 그룹의 구성원 목록을 가져와야하는 경우 어떤 종류의 "사용 권한이 거부되었습니다"가 표시되어야합니다. –
Peter