動的アカウントは、レガシー JavaScript 実装(H コード)を使用した場合にのみサポートされます。これらの変数は、現在の AppMeasurement ライブラリや Adobe Experience Platform のタグではサポートされていません。
dynamicAccountMatch
変数は、dynamicAccountList
が値を調べて比較する値です。dynamicAccountSelection
を true
に設定しない場合、この変数は無視されます。
この変数を定義しない場合、デフォルト値は window.location.host
です。
s.dynamicAccountMatch=[DOM object]
// Look at the URL path to determine report suite
s.dynamicAccountMatch = location.pathname;
// Use a query string
s.dynamicAccountMatch = location.search;
// Use the full URL
s.dynamicAccountMatch = location.href;
// Use concatenated variables
s.dynamicAccountMatch = location.hostname + location.pathname + location.search;
location
変数が定義されていません(例えば、location.host
は空白)。s_account
にデフォルトのレポートスイートが含まれていることを確認します。s_account
変数をサーバーサイドで設定してください。