HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
403 | 1470403 | The identity token is incorrect. It should be either user_access_token or tenant_access_token. | 发起请求方的身份token不正确,需要为UserAccessToken或TenantAccessToken其中一种 |
400 | 1470602 | Invalid task id. | 请检查任务的 id 是否合法 |
400 | 1470432 | No permission to get the task. | 没有获取任务的权限,需要检查当前发起请求的对象是否有权限 |
curl --location --request GET 'https://open.feishu.cn/open-apis/task/v1/tasks/0d38e26e-190a-49e9-93a2-35067763ed1f/followers?page_size=10&page_token=「上次返回的page_token」&user_id_type=open_id' \
--header 'Authorization;'
{
"code": 0,
"msg": "success",
"data": {
"items": [
{
"id": "ou_99e1a581b36ecc4862cbfbce473f3123",
"id_list": [
"ou_550cc75233d8b7b9fcbdad65f34433f4"
]
}
],
"page_token": "「上次返回的page_token」",
"has_more": false
}
}