设备
复制一个包含安装步骤和本插件的完整Markdown指南的AI 配置提示。
设备是单独的应用程序安装,向 Capgo 报告更新器元数据。使用此 API 来检索该元数据或设置和删除设备特定的私有频道重写。
设备元数据
标题:设备元数据每个记录都可以包含设备 ID、平台、更新器和操作系统版本、原生构建、安装的捆绑包、生产和模拟器状态、自定义 ID 和渠道覆盖。
当可用时 country_code 是最新的有效两位字母 ISO 3166-1 国家 code,从 Cloudflare 处理的设备请求中接收。它不是 GPS 或您的应用程序提供的位置值。它可以 null 当不可用时;在需要此字段时使用单设备查找。
https://api.capgo.app/device/
为设备设置特定的覆盖值到一个 私有 channel. 为设备选择一个包,分配该包到channel; 不支持直接设备包覆盖。 覆盖在最后一次写入后90天过期,除非您再次POST它。
Request body
Section titled “Request body”interface DeviceChannelOverride { app_id: string; // reverse-domain app ID, for example com.example.app device_id: string; channel: string; // existing non-public channel name}Example request
Section titled “Example request”curl -X POST \ -H "authorization: your-api-key" \ -H "Content-Type: application/json" \ -d '{ "app_id": "com.example.app", "device_id": "device_456", "channel": "beta" }' \ https://api.capgo.app/device/公共频道不能用作设备覆盖
成功响应
标题:成功响应{ "status": "ok"}GET
标题:GEThttps://api.capgo.app/device/
获取设备元数据。 当您省略时,结果是分页指针 device_id.
查询参数
标题:查询参数app_id:必需的反向域应用程序ID,例如com.example.app.device_id:可选设备ID。 当存在时,响应是单个设备而不是分页列表customIdMode: 可选布尔值。设置为true仅返回非空设备:custom_id.cursor: 上一次列表响应中的游标。limit: 每页设备数量。
示例请求
标题:示例请求# Get the first pagecurl -H "authorization: your-api-key" \ "https://api.capgo.app/device/?app_id=com.example.app"
# Get one device, including its request-derived country when availablecurl -H "authorization: your-api-key" \ "https://api.capgo.app/device/?app_id=com.example.app&device_id=device_456"
# Get only devices with a custom IDcurl -H "authorization: your-api-key" \ "https://api.capgo.app/device/?app_id=com.example.app&customIdMode=true"
# Get the next pagecurl -H "authorization: your-api-key" \ "https://api.capgo.app/device/?app_id=com.example.app&cursor=2024-01-01T00:00:00Z%7Cdevice_456"响应类型
标题:响应类型interface DeviceListResponse { data: Device[]; nextCursor?: string; hasMore: boolean;}
interface Device { updated_at: string; device_id: string; custom_id: string; version?: number; version_name: string | null; channel?: string; app_id: string; platform: "ios" | "android" | "electron"; plugin_version: string; os_version: string; version_build: string; is_prod: boolean; is_emulator: boolean; key_id: string | null; install_source: string | null; country_code: string | null;}country_code 当Capgo存储了一个有效的Cloudflare派生国家code时,code会被设备特定查找填充。没有有效国家的请求不会清除最后一个有效值;列表响应可能返回 null 为此字段。
示例响应(列表)
标题:示例响应(列表){ "data": [ { "device_id": "device_456", "custom_id": "test-device-1", "version": 1, "version_name": "1.0.0", "app_id": "com.example.app", "platform": "ios", "plugin_version": "5.0.0", "os_version": "17.0", "version_build": "1", "is_prod": true, "is_emulator": false, "key_id": null, "install_source": null, "country_code": null, "updated_at": "2024-01-01T00:00:00Z" } ], "nextCursor": "2024-01-01T00:00:00Z|device_456", "hasMore": true}示例响应(单个设备)
标题:示例响应(单个设备){ "device_id": "device_456", "custom_id": "test-device-1", "version": 1, "version_name": "1.0.0", "app_id": "com.example.app", "platform": "ios", "plugin_version": "5.0.0", "os_version": "17.0", "version_build": "1", "is_prod": true, "is_emulator": false, "key_id": "MIIB", "install_source": null, "country_code": "FR", "updated_at": "2024-01-01T00:00:00Z", "channel": "beta"}DELETE
标题:DELETEhttps://api.capgo.app/device/
删除设备的频道重写。设备将使用其正常的频道选择;此端点不会删除其元数据记录。
请求体或查询参数
标题:请求体或查询参数interface DeviceOverrideRemoval { app_id: string; device_id: string;}示例请求
标题:示例请求curl -X DELETE \ -H "authorization: your-api-key" \ -H "Content-Type: application/json" \ -d '{ "app_id": "com.example.app", "device_id": "device_456" }' \ https://api.capgo.app/device/成功响应
标题:成功响应{ "status": "ok"}错误
标题:错误错误使用HTTP错误状态和一个JSON体中 error 和 message fields. 常见错误代码包括:
invalid_app_id当app_id不是一个逆向域名标识符。device_not_found用于未知设备查找。channel_not_found当请求的频道不存在。public_channel_override当尝试将设备覆盖到公共频道时。invalid_version_id当尝试直接覆盖包时,应使用频道代替。cannot_access_app或cannot_access_channelwhen the API key lacks the required permission.
或
或-
或
{"app_id": "com.example.app","device_id": "device_456","channel": "beta"} -
重置设备到正常频道选择
使用
DELETE带有应用程序和设备 ID 的端点。
继续从设备
标题:继续从设备如果您正在使用 设备 来规划频道路由和阶段性发布,连接它到 频道 频道 频道 为 Channels 的实现细节 Channels 为 Channels 的实现细节 Beta 测试解决方案 为 Beta 测试解决方案的产品工作流程 版本目标解决方案 为版本目标解决方案的产品工作流程