Skip to content

Commit

Permalink
File src/content/docs/en/sdk/testing/device-api.mdx was translated to…
Browse files Browse the repository at this point in the history
… zh-CN locale
  • Loading branch information
smartling-github-connector[bot] authored Dec 13, 2024
1 parent 0fef338 commit 91c0a43
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions src/content/docs/zh/sdk/testing/device-api.mdx
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
---
title: 通过设备 API 验证安装
description: 测试 Adjust SDK 是否通过设备 API 向 Adjust 发送安装信息
slug: zh/sdk/testing/device-api
sidebar-label: 设备 API
title: "通过设备 API 验证安装"
description: "测试 Adjust SDK 是否通过设备 API 向 Adjust 发送安装信息"
slug: "en/sdk/testing/device-api"
sidebar-label: "设备 API"
sidebar-position: 4
---
通过[设备 API](/en/api/device-api/),您无需登录 Adjust 控制面板即可验证安装信息。您可以使用[查询设备终端](/en/api/device-api/inspect/)来查看以下信息:

通过[设备 API](/zh/api/device-api/),您无需登录 Adjust 控制面板即可验证安装信息。您可以使用[查询设备终端](/zh/api/device-api/inspect/)来查看以下信息:

- 设备归因
- 设备再归因
- 事件数据
- 推送标签集成
- 订阅数据
* 设备归因
* 设备再归因
* 事件数据
* 推送标签集成
* 订阅数据

要使用设备 API:

Expand All @@ -27,8 +26,8 @@ sidebar-position: 4
5. 如果您此前曾使用此设备进行测试:

1. 从测试设备中删除您的应用。
2. 在测试控制台中清除设备的广告 ID。请按照[AppView 中的测试控制台](https://help.adjust.com/zh/article/testing-console#forget-device)中的说明进行操作。
3. 另外,还可以调用[遗忘设备终端](/zh/api/device-api/forget/)来移除已有设备信息。
2. 在测试控制台中清除设备的广告 ID。请按照[AppView 中的测试控制台](https://help.adjust.com/en/article/testing-console#forget-device)中的说明进行操作。
3. 另外,还可以调用[遗忘设备终端](/en/api/device-api/forget/)来移除已有设备信息。

```bash
curl --location --request POST "https://api.adjust.com/device_service/api/v1/forget_device" \
Expand All @@ -38,14 +37,15 @@ sidebar-position: 4

6. 下载并打开包含 Adjust SDK 的测试版本应用。

7. 调用[查询设备终端](/zh/api/device-api/inspect/)来返回该设备的安装信息。
7. 调用[查询设备终端](/en/api/device-api/inspect/)来返回该设备的安装信息。

```bash
curl --location --request GET "https://api.adjust.com/device_service/api/v1/inspect_device?advertising_id={your_advertising_id}&app_token={your_app_token}" \
--header "Authorization: Bearer {your_bearer_token}"
```

## 响应示例{#example-response}
响应示例\{\#example\-response\}
-------------------------------

```json
{
Expand All @@ -65,3 +65,4 @@ sidebar-position: 4
"State": "installed"
}
```

0 comments on commit 91c0a43

Please sign in to comment.