-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
File src/content/docs/en/sdk/web/features/device-info.mdx was transla…
…ted to ja-JP locale
- Loading branch information
1 parent
48524ff
commit 3b7d62b
Showing
1 changed file
with
9 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,22 @@ | ||
--- | ||
title: Get device information | ||
description: Use these methods to add details to your callbacks and improve your reporting. | ||
slug: ja/sdk/web/features/device-info | ||
title: "デバイス情報を取得" | ||
description: "これらのメソッドを使用することでコールバックに詳細を追加し、レポートを改善させましょう。" | ||
slug: "en/sdk/web/features/device-info" | ||
--- | ||
Adjust SDKには、デバイス情報を返すヘルパーメソッドが含まれています。これらのメソッドを使用することでコールバックに詳細を追加し、レポートを改善させましょう。 | ||
|
||
The Adjust SDK contains helper methods that return device information. Use these methods to add details to your callbacks and improve your reporting. | ||
Web UUID \{\#web\-uuid\} | ||
---------------------------- | ||
|
||
## Web UUID \{\#web\-uuid\} | ||
|
||
<MinorVersion | ||
changed="5.7.0" | ||
link="https://github.com/adjust/web_sdk/releases/tag/v5.7.0" | ||
/>{" "} | ||
<minorversion changed="5.7.0" link="https://github.com/adjust/web_sdk/releases/tag/v5.7.0" /> | ||
|
||
AdjustがWebユーザーを識別するために、Web SDKはセッションを送信する際に一意の`web_uuid`を生成します。IDはUniversally Unique Identifier(UUID)のフォーマットです。 | ||
|
||
`waitForWebUUID`メソッドは、`web_uuid`が生成されるかブラウザのストレージから取得されると解決される`promise`を返します(可用性に応じて`IndexedDB`または`LocalStorage`)。 | ||
|
||
Call the `waitForWebUUID` method to return this information as a `string`. | ||
`waitForWebUUID`メソッドを呼び出して、この情報を`string`として返します。 | ||
|
||
```js | ||
Adjust.waitForWebUUID().then((webUuid) => console.log(webUuid)); | ||
``` | ||
|