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
… ko-KR locale
  • Loading branch information
smartling-github-connector[bot] authored Dec 13, 2024
1 parent 31056f8 commit 0fef338
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions src/content/docs/ko/sdk/testing/device-api.mdx
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
---
title: 디바이스 API로 설치 검증
description: Adjust SDK가 디바이스 API를 통해 Adjust에 설치 정보를 전송하는지 테스트
slug: ko/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/)\(inspect device endpoint\)를 다음의 데이터 검사에 사용하시기 바랍니다.

디바이스 API를 사용하면 Adjust 대시보드에 로그인하지 않고 설치 정보를 확인할 수 있습니다. 디바이스 엔드포인트 검사\(inspect device endpoint\)를 다음의 데이터 검사에 사용하시기 바랍니다.
* 디바이스 어트리뷰션
* 디바이스 리어트리뷰션
* 이벤트 데이터
* 푸시 토큰 연동
* 구독 데이터

- 디바이스 어트리뷰션
- 디바이스 리어트리뷰션
- 이벤트 데이터
- 푸시 토큰 연동
- 구독 데이터
디바이스 API 사용 방법:

디바이스 API 사용 방법:

1. 플랫폼별 Adjust SDK 시작 가이드를 참조하여 연동을 완료합니다.
1. 플랫폼별 Adjust SDK 연동 가이드를 참조하여 연동을 완료합니다.

2. **샌드박스** 모드로 환경을 설정하여, 앱이 테스트용 콘솔로만 정보를 전송하도록 합니다.

Expand All @@ -27,8 +26,8 @@ sidebar-position: 4
5. 이전에 테스트 목적으로 해당 기기를 사용한 적이 있다면 다음을 수행하시기 바랍니다.

1. 테스트용 기기에서 앱을 삭제합니다.
2. 테스팅 콘솔에서 기기의 광고 ID를 삭제합니다. [AppView의 테스팅 콘솔 페이지](https://help.adjust.com/ko/article/testing-console#forget-device)의 지침을 참고하시기 바랍니다.
3. 대안으로, [forget device 엔드포인트](/ko/api/device-api/forget/)를 호출하여 기기의 기존 정보를 삭제할 수도 있습니다.
2. 테스팅 콘솔에서 기기의 광고 ID를 삭제합니다. [AppView의 테스팅 콘솔 페이지](https://help.adjust.com/en/article/testing-console#forget-device)의 지침을 참고하시기 바랍니다.
3. 대안으로, [forget device 엔드포인트](/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. [디바이스 엔드포인트 검사\(inspect device endpoint\)](/ko/api/device-api/inspect/)를 호출하여 디바이스에 대한 설치 정보를 반환합니다.
7. [디바이스 엔드포인트 검사\(inspect device endpoint\)](/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 0fef338

Please sign in to comment.