SDK イベント (Python)
最終更新日: 2024年7月22日
- トピック:
- APIs/SDKs
作成対象:
- 開発者
説明
SDK を初期化する際、options["events"]
dict は、イベント名キーとコールバック関数値を持つオプションのオブジェクトです。 SDK 内で発生する様々なイベントをサブスクライブするために使用できます。 例えば、client_ready
イベントは、SDK がメソッド呼び出しの準備ができたときに呼び出されるコールバック関数と共に使用できます。
callback
関数が呼び出されると、イベントオブジェクトが渡されます。 各イベントにはイベント名に対応する type
があり、一部のイベントには関連情報を含む追加のプロパティが含まれています。
Events
イベント名(タイプ) | 説明 | その他のイベントプロパティ |
---|---|---|
client_ready | アーティファクトがダウンロードされ、SDK が get_offers 呼び出しの準備が整うと発行されます。 を使用する場合に推奨 | オンデバイス判定方法。 |
artifact_download_successful | 新しいアーティファクトがダウンロードされるたびに発行されます。 | artifact_payload, artifact_location |
artifact_download_failed | アーティファクトのダウンロードに失敗するたびに生成されます。 | artifact_location, エラー |
例
Python
def client_ready_callback():
# make get_offers requests
def artifact_download_succeeded(event):
print("The artifact was successfully downloaded from {}".format(event.artifact_location))
# optionally do something with event.artifact_payload, like persist it
def artifact_download_failed(event):
print("The artifact failed to download from {} with the following error: {}"
.format(event.artifact_location, str(event.error)))
client_options = {
"client": "acmeclient",
"organization_id": "1234567890@AdobeOrg",
"events": {
"client_ready": client_ready_callback,
"artifact_download_succeeded": artifact_download_succeeded,
"artifact_download_failed": artifact_download_failed
}
}
target_client = target_client.create(client_options)
Target
- Adobe Target開発者ガイド
- 入門
- クライアントサイド実装
- 概要:Target をクライアント側 web に実装する
- Adobe Experience Platform Web SDK 実装の概要
- at.js の実装
- at.js の概要
- at.js の仕組み
- at.js のデプロイ方法
- オンデバイス判定
- at.js 関数
- at.js 関数の概要
- adobe.target.getOffer()
- adobe.target.getOffers() - at.js 2.x
- adobe.target.applyOffer()
- adobe.target.applyOffers() - at.js 2.x
- adobe.target.triggerView() - at.js 2.x
- adobe.target.trackEvent()
- mboxCreate() - at.js 1.x
- targetGlobalSettings()
- mboxDefine() と mboxUpdate() - at.js 1.x
- targetPageParams()
- targetPageParamsAll()
- registerExtension() - at.js 1.x
- sendNotifications() - at.js 2.1
- at.js カスタムイベント
- Adobe Experience Cloud デバッガーを使用した at.js のデバッグ
- Target でのクラウドベースのインスタンスの使用
- at.js の FAQ
- at.js のバージョンの詳細
- at.js 1.x から at.js 2.x へのアップグレード
- at.js の cookie
- User-agent と client hints
- グローバル mbox について
- サーバーサイド実装
- ハイブリッド実装
- Recommendations実装
- モバイルアプリの実装
- メール実装
- の API ガイド
- 実装パターン