查看待审核的应用列表
GET
/open-apis/application/v6/applications/underauditlist
自建应用
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 210500 | page_token does not exist or has expired | 请检查 page_token 是否合法,page_token 过期时间为 2h,若超过 2h 请重新获取 |
400 | 210501 | invalid page_token | page_token 在应用间不互通,请检查该 page_token 是否由调用接口的应用获取到 |
400 | 210502 | page_size out of range, should be between 1 and 50 | 请检查 page_size 范围是否在 [1, 50] 范围内 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.feishu.cn/open-apis/application/v6/applications/underauditlist?lang=zh_cn&page_token=new-e3c5a0627cdf0c2e057da7257b90376a&page_size=50&user_id_type=' \
--header 'Authorization;'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"items": [
{
"app_id": "cli_9b445f5258795107",
"creator_id": "ou_d317f090b7258ad0372aa53963cda70d",
"status": 1,
"scene_type": 0,
"payment_type": 0,
"redirect_urls": [
"https://www.example.com"
],
"online_version_id": "oav_d317f090b7258ad0372aa53963cda70d",
"unaudit_version_id": "oav_d317f090b7258ad0372aa53963cda70d",
"app_name": "应用名称",
"avatar_url": "https://sf1-ttcdn-tos.pstatp.com/img/avatar/d279000ca4d3f7f6aaff~72x72.jpg",
"description": "应用描述",
"scopes": [
{
"scope": "contact:user.base",
"description": "获取应用信息",
"level": 1
}
],
"back_home_url": "https://www.example.com",
"i18n": [
{
"i18n_key": "zh_cn",
"name": "应用名称",
"description": "应用描述",
"help_use": "https://www.example.com"
}
],
"primary_language": "zh_cn",
"common_categories": [
"分析工具"
],
"owner": {
"type": 0,
"owner_id": "ou_d317f090b7258ad0372aa53963cda70d",
"name": "test tenant",
"help_desk": "https://applink.feishu.cn/client/helpdesk/open?id=6940534140529803284",
"email": "test123@163.com",
"phone": "1234534234234"
}
}
],
"has_more": true,
"page_token": "new-xxxxxxxxxxx"
}
}
请求参数
Query 参数
lang
string
必需
示例值:
zh_cn
page_token
string
可选
示例值:
new-e3c5a0627cdf0c2e057da7257b90376a
page_size
string
可选
示例值:
50
user_id_type
string
可选
union_id:标识一个用户在某个应用开发商下的身份。同一用户在同一开发商下的应用中的 Union ID 是相同的,在不同开发商下的应用中的 Union ID 是不同的。通过 Union ID,应用开发商可以把同个用户在多个应用中的身份关联起来。了解更多:如何获取 Union ID?
user_id:标识一个用户在某个租户内的身份。同一个用户在租户 A 和租户 B 内的 User ID 是不同的。在同一个租户内,一个用户的 User ID 在所有应用(包括商店应用)中都保持一致。User ID 主要用于在不同的应用间打通用户数据。了解更多:如何获取 User ID?
默认值:open_id
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
返回响应
修改于 2023-02-02 10:21:17