Loading
メール配信ドメイン検証状況の確認方法のご案内続きを読む
ただいま大変多くのお問い合わせをいただいており、ご連絡までにお時間を頂戴しております続きを読む
Marketing Cloud Personalization
目次
絞り込み条件を選択

          結果がありません
          結果がありません
          検索のヒントをいくつかご紹介します

          キーワードの入力ミスがないか確認する。
          より一般的な検索語を使用する。
          絞り込み条件を減らして、検索範囲を広げる。

          Salesforce ヘルプ全体を検索
          サイトマップの同意管理

          サイトマップの同意管理

          Marketing Cloud Personalization と Data 360 Web SDK のどちらも、ユーザーの同意設定を管理するための API を提供します。次の例を使用して、Data 360 サイトマップで同意状況の更新、現在の同意の取得、同意変更イベントのリスンを行います。

          次の表は、Marketing Cloud Personalization と Salesforce Personalization のデフォルトの同意動作の違いを示しています。

          Marketing Cloud Personalization に関する同意 Salesforce Personalization の同意

          Marketing Cloud Personalization とは異なり、Salesforce Personalization では暗黙的なオプトイン動作に頼ることはできません。Salesforce Personalization 機能が期待どおりに機能するように、同意を明示的に設定する必要があります。

          Example: Marketing Cloud Personalization Web SDK Consent Configuration// Updates consents
          SalesforceInteractions.updateConsents([
            {
              purpose: 'Personalization',
              provider: 'MyConsentProvider',
              status: SalesforceInteractions.ConsentStatus.OptIn
            }
          ]);
          
          // Gets current consents
          const consents = SalesforceInteractions.getConsents();
          
          // Listens for consent revocation only
          document.addEventListener('interactions:onConsentRevoke', handler);
          Example: Data 360 Web SDK Consent Configuration// Updates consents (same API)
          SalesforceInteractions.updateConsents([
            {
              purpose: 'Tracking',  // Replaces 'Personalization' used in Marketing Cloud Personalization; Salesforce Personalization commonly uses 'Tracking' for purpose
              provider: 'MyConsentProvider', 
              status: SalesforceInteractions.ConsentStatus.OptIn
            }
          ]);
          
          // Gets current consents
          const consents = SalesforceInteractions.getConsents();
          
          // Listens for both consent grant and consent revocation
          document.addEventListener('interactions:onConsentGrant', handler);   // New setting
          document.addEventListener('interactions:onConsentRevoke', handler);
           
          読み込み中
          Salesforce Help | Article