Messenger 發訊廣告

本指南說明如何使用推廣 API 建立和發佈 Messenger 發訊廣告。

如要使用廣告管理員建立名單型廣告宣傳活動,請瀏覽 Meta 企業商家幫助中心

用戶點擊您的 Messenger 發訊廣告後,系統會將用戶直接帶到 Messenger 中,讓他們與您的企業開始對話。您可以運用這種廣告大規模地接觸用戶,以及提供出色的個人化服務。

Messenger 發訊廣告支援在廣告中包含圖像、影片、輪播內容或微影片。您也可以在廣告中加入通話提示。

如果您有興趣建立廣告來將用戶帶到 Instagram 或 WhatsApp 中聊天,請參閱 Instagram 發訊廣告WhatsApp 發訊廣告以獲取有關指引。您還可以建立廣告來將用戶帶到最有可能吸引他們回應的應用程式,詳情請瀏覽多目的地發訊廣告

廣告建立流程概覽

建立和發佈廣告的步驟如下:

  1. 建立宣傳活動
  2. 建立廣告組合,以連結廣告與廣告宣傳活動
  3. 根據要刊登的 Messenger 廣告類型建立廣告創意
  4. 連結廣告創意與廣告組合以建立廣告
  5. 在 Facebook、Instagram 及 Messenger 上發佈廣告

準備工作

本指南假設您符合以下條件:

如要成功呼叫本指南中的所有端點,您需要以下項目:

  • 專頁存取憑證,由可以在專頁上執行 ADVERTIZE 任務的用戶所要求
  • 使用您應用程式的用戶必須向您授權以下權限:
    • ads_management
    • pages_manage_ads
    • pages_read_engagement
    • pages_show_list

步驟 1:建立宣傳活動

如要建立廣告宣傳活動,您需向 act_ad_account_id/campaigns 端點傳送 POST 要求,其中 ad_account_id 即您的 Meta 廣告帳戶編號。您的要求必須包括以下內容:

  • access_token
  • buying_type
  • name
  • objective:設定為 OUTCOME_TRAFFICOUTCOME_LEADS(適用於名單型廣告)
  • special_ad_categories
  • status

廣告宣傳活動快速參考資料

要求範例

我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 ad_account_id
curl -X POST "https://graph.facebook.com/v19.0/act_ad_account_id/campaigns" \
     -H "Content-Type: application/json" \
     -d '{
           "access_token":"Your_page_access_token",
           "buying_type":"AUCTION",
           "name":"Messenger_ad_campaign_name",
           "objective":"OUTCOME_TRAFFIC",
           "status":"PAUSED",
           "special_ad_categories":["NONE"],
         }'

成功的話,應用程式就會收到以下 JSON 回應,其中包含您宣傳活動的編號。

{
  "id": "campaign_id"
}

步驟 2:建立廣告組合

如要建立廣告組合,您需向 act_ad_account_id/adsets 端點傳送 POST 要求,其中 ad_account_id 即您的 Meta 廣告帳戶編號。您的要求必須包括以下內容:

  • access_token
  • bid_amount
  • billing_event 設為 IMPRESSIONS
  • campaign_id
  • daily_budget
  • destination_type 設為 MESSENGER
  • name
  • optimization_goal 設為 CONVERSATIONSIMPRESSIONSLEAD_GENERATIONQUALITY_LEAD(適用於名單型廣告)
  • promoted_object:設定為您企業的 Facebook 專頁編號。贊助訊息必要項目
  • status 設為 PAUSED
  • targeting:使用贊助訊息時,需要在 device_platforms 中加入流動版和桌面版裝置

廣告組合快速參考資料

要求範例

我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 ad_account_id
curl -X POST "https://graph.facebook.com/v19.0/act_ad_account_id/adsets"
     -H "Content-Type: application/json" 
     -d '{
           "access_token":"Your_page_access_token",
           "bid_amount":"Your_bid_amount",
           "billing_event":"IMPRESSIONS",
           "campaign_id":"Your_campaign_id",
           "daily_budget":"Your_daily_budget",
           "destination_type":"MESSENGER",
           "name:"Your_messenger_adset_name",
           "optimization_goal:IMPRESSIONS",
           "status:PAUSED",
           "targeting":{ 
             "geo_locations": { "countries":["US","CA"] },
             "device_platforms": ["mobile", "desktop"],
             "publisher_platforms": ["messenger"] 
           } 
         }'

成功的話,您的應用程式就會收到以下 JSON 回應,其中包含廣告組合編號。

{
  "id": "adset_id"
}

步驟 3:建立廣告創意

透過建立廣告創意,您可以在廣告中加入各種素材。

限制

  • 不支援使用 object_story_id 建立的廣告
  • 用戶必須在其裝置上安裝 Messenger,才可查看您的廣告
  • 不支援右側廣告版位

如要建立廣告創意,您需向 /act_ad_account_id/adcreatives 端點傳送 POST 要求,其中 ad_account_id 即您的 Meta 廣告帳戶編號。您的要求必須包括以下內容:

  • access_token
  • messenger_sponsored_message:贊助訊息必要項目
  • name
  • object_id:贊助訊息必要項目
  • object_story_spec:必要項目
  • object_type:贊助訊息必要項目
  • privacy_url:名單型廣告必要項目
  • standard_enhancements.enroll_status:符合標準強化效果的廣告創意必要項目。

頂層廣告創意參數快速參考資料

Messenger 發訊廣告

如要建立 Messenger 發訊廣告的廣告創意,您需向 /act_ad_account_id/adcreatives 端點傳送 POST 要求,其中 ad_account_id 即您的 Meta 廣告帳戶編號。您的要求必須包括以下內容:

  • access_token
  • name
  • object_story_spec,帶有定義影音素材類型的 *_data 物件

圖像廣告快速參考資料

圖像廣告要求範例

我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 page_access_token
curl -X POST "https://graph.facebook.com/v19.0/act_ad_account_id/adcreatives"
     -H "Content-Type: application/json" 
     -d '{
           "access_token":"page_access_token",
           "name":"Your_CTM_image_ad_name",
           "object_story_spec":{
             "page_id": "your_page_id",
             "link_data": { 
               "page_welcome_message": "Your_welcome_message",
               "image_hash": "Your_image_hash", 
               "link": "Your_image_URL", 
               "call_to_action": {
                 "type":"LEARN_MORE",
                 "value":{ "app_destination":"MESSENGER" }
               }   
             }
           }
         }'          

Messenger 發訊影片廣告快速參考資料

影片廣告要求範例

我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 page_access_token
curl -X POST "https://graph.facebook.com/v19.0/act_ad_account_id/adcreatives"
     -H "Content-Type: application/json" 
     -d '{
           "access_token": "page_access_token",
           "name": "Your_CTM_image_ad_name",
           "object_story_spec": {
             "page_id": "your_page_id",
             "video_data": { 
               "call_to_action": {
                 "type": "LEARN_MORE",
                 "value": { "app_destination": "MESSENGER" }
               },
               "link_description": "Your_link_description",
               "image_url": "Your_thumbnail_URL", 
               "page_welcome_message": "Your_welcome_text",
               "video_id": "video_id"
             } 
           }
         }'

使用在合作夥伴應用程式上配置的訊息流程的廣告

我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 page_access_token
curl -X POST "https://graph.facebook.com/v19.0/act_ad_account_id/adcreatives"
     -H "Content-Type: application/json" 
     -d '{
           "access_token": "page_access_token",
           "name": "Your_CTM_image_ad_name",
           "object_story_spec": {
             "page_id": "your_page_id",
             "link_data": { 
               "image_hash": "your_image_hash",
               "link": "your_image_URL",
               "call_to_action": {
                 "type": "MESSAGE_PAGE",
                 "value": { "app_destination":"MESSENGER" }
               }   
             }
           },
           "asset_feed_spec": {
             "additional_data": {
               "partner_app_welcome_message_flow_id": "FLOW-ID"
             }
           }
         }'

如要進一步了解訊息應用程式流程,請參閱 Messenger 平台文件中的歡迎訊息流程

點擊訂閱

點擊訂閱廣告是一種 Messenger 發訊廣告,其中 object_story_spec.page_welcome_message 是包含通知訊息範本的物件陣列。用戶點擊您廣告中的接收訊息按鈕,即表示其同意接收來自您企業的營銷訊息。

如要建立點擊訂閱廣告的廣告創意,您需向 /act_ad_account_id/adcreatives 端點傳送 POST 要求,其中 ad_account_id 即您的 Meta 廣告帳戶編號。您的要求必須包括以下內容:

  • access_token
  • name
  • object_story_spec,帶有
    • 定義影音素材類型的 *_data 物件
    • page_welcome_message 陣列,定義選擇接收營銷訊息要求。必須包含設為 marketing_messageslanding_screen_type,以及設為 nofitication_messages 的訊息附件 payload.template_type

圖像廣告要求範例

我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 ad_account_id
curl -X POST "https://graph.facebook.com/v19.0/act_ad_account_id/adcreatives"
     -H "Content-Type: application/json" 
     -d '{
           "access_token": "page_access_token",
           "name": "Your_CTS_image_ad_name",
           "object_story_spec": {
             "page_id": "your_page_id",
             "link_data": { 
               "image_hash": "Your_image_hash", 
               "link": "Your_image_URL", 
               "call_to_action": {
                 "type": "LEARN_MORE",
                 "value":{ "app_destination": "MESSENGER" }
               }
               "page_welcome_message": "{
                 "landing_screen_type": "marketing_messages",
                 "media_type": "image",
                 "image_format": {
                   "customer_action_type": "buttons",
                   "message": {
                     "text": "Your_welcome_message",
                     "attachment": {
                       "type": "template",
                       "payload":{
                         "template_type":"notification_messages",
                         "elements": [{
                             "title": "Your_CTS_title",
                             "subtitle": "Your_CTS_subtitle",
                             "image_url": "Your_image_URL",
                             "app_id": "Your_Meta_app_ID",
                             "buttons": [{
                               "type": "postback",
                               "payload": "Data_to_include_in_webhook_notification",
                               "title": "Get messages"
                             }]
                         }]
                       }
                     }
                   } 
                 }
               }"
             }
           }
         }'          

對話中的名單型廣告

Messenger 名單型廣告讓您能夠使用自動化聊天室範本,在 Messenger 中開發潛在顧客。您可以直接在您的首選訊息平台上,向對您企業感興趣的用戶提出具體問題,收集顧客喜好資訊並提出自訂問題,優先接觸最符合您要求的潛在顧客。

在建立 Messenger 名單型廣告的廣告創意之前,您必須接受 Messenger 名單型廣告的條款及細則。

訊息範本必要條件

  • 歡迎訊息:在用戶點按您廣告之後,您向他們展示的打招呼訊息,旨在告知用戶您企業的具體業務
  • 問題訊息:收集有助於確定用戶是否為潛在顧客的訊息。此等訊息可能包含有關興趣愛好、所在地點,以及電郵地址和手機號碼等聯絡資料的問題。
  • 確認訊息:讓您能夠感謝用戶回答問題,並告知用戶後續情況。您可以在廣告管理員、自家專頁的發佈工具或您的客戶關係管理系統中查看新潛在顧客。
  • 私隱政策:列明您在收集顧客資料時遵循的規定。

限制

  • 建立訊息範本後便無法加以編輯或刪除

建立訊息範本

如要建立訊息範本,您需向 /page_id/messenger_lead_forms 端點傳送 POST 要求,其中 page_id 即您企業的 Facebook 專頁編號。您的要求必須包括以下內容:

  • access_token
  • privacy_url
  • step_list 陣列,包含 messagereply_typestep_idstep_type
  • template_name
  • reminder_text

以下訊息範本包含您的 template_nameprivacy_urlstep_list(包含 step_id: 0 中的歡迎訊息、step_id: 14 中的問題、step_id: 5 中的確認訊息,以及 step_id: 6 中的資格不符訊息)。

訊息範本快速參考資料

潛在顧客訊息範本範例

我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 page_access_token
curl -X POST "https://graph.facebook.com/v19.0/your_page_ID/messenger_lead_forms"
     -H "Content-Type: application/json" 
     -d '{
           "access_token": "Your_page_access_token",
           "privacy_url": "Your_privacy_policy_URL",
           "reminder_text": "Your_reminder_text",
           "template_name": "Your_template_name",
           "step_list": [
             {
               "step_id": "0",
               "message": "Your_welcome_message",
               "step_type": "INTRO",
               "reply_type": "NONE",
               "next_step_ids": "1"
             },
             {
               "step_id": "1"
               "message": "Are_you_interested_in_our_products_or_services?",
               "step_type": "QUESTION",
               "reply_type": "QUICK_REPLIES",
               "answers": ["Yes", "Not now", "Maybe"],
               "next_step_ids": [2,6,2],
               "allow_to_skip": false,
               "answer_validation_enabled": true
             },
             {
               "step_id": "2",
               "message": "What city do you live in?",
               "step_type": "QUESTION",
               "reply_type": "PREFILL",
               "prefill_type": "CITY",
               "next_step_ids": "3",
               "allow_to_skip": true
             },
             {
               "step_id": "3",
               "message": "What is your phone number?",
               "step_type": "QUESTION",
               "reply_type": "PREFILL",
               "prefill_type": "PHONE",
               "next_step_ids": "4",
               "allow_to_skip": false,
               "answer_validation_enabled": true
             },
             {
               "step_id": "4",
               "message": "What is your email address?",
               "step_type": "QUESTION",
               "reply_type": "PREFILL",
               "prefill_type": "EMAIL",
               "next_step_ids": "5",
               "allow_to_skip": false,
               "answer_validation_enabled": true
             },
             {
               "step_id": "5",
               "message": "Your_confirmation_message",
               "step_type": "CONFIRMATION",
               "reply_type": "NONE"
             },
             {
               "step_id": "6",
               "message": "Your_disqualification_message",
               "step_type": "DISQUALIFY",
               "reply_type": "NONE"
             }
           ]
        }'

成功的話,應用程式就會收到以下 JSON 回應,其中包含範本編號。

{
  "id": "your_messenger_lead_gen_template_id"
}

在此過程中,您還需建立 fblead_form 並將其與訊息範本連結。

獲取表格清單

如要獲取 Messenger 名單型廣告表格範本清單,您需向 /page_id/messenger_lead_forms 端點傳送 GET 要求。此外,您還可以向 /Your_messenger_lead_gen_template_id 端點傳送 GET 要求,以獲取有關特定範本的資訊。

廣告創意範例

如要建立名單型廣告的廣告創意,您需向 /act_ad_account_id/adcreatives 端點傳送 POST 要求,其中 ad_account_id 即您的 Meta 廣告帳戶編號。您的要求必須包括以下內容:

  • access_token
  • name
  • object_story_spec,其中包含定義媒體類型、圖像或影片的 *_data 物件,並包括以下內容:
    • *_data.page_welcome_message 參數設定為鍵/值組
      • ctm_lead_gen_template_id:Your_messenger_lead_gen_template_id

包含圖像的 Messenger 名單型廣告之廣告創意範例

我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 ad_account_id
curl -X POST "https://graph.facebook.com/v19.0/act_AD_ACCOUNT_ID/adcreatives"
    -H "Content-Type: application/json" 
    -d '{
          "access_token": "Your_page_access_token",
          "degrees_of_freedom_spec": {
            "creative_features_spec": {
              "standard_enhancements": { "enroll_status": "OPT_IN" }
            }
          },
          "name": "Your_lead_ad_image_ad_name",
          "object_story_spec": {
            "page_id": "Your_page_id",
            "link_data": {
              "call_to_action": {
                "type": "MESSAGE_PAGE",
                "value": { "app_destination": "MESSENGER" }
              },
              "description": "Sample_description",
              "image_hash": "Your_image_hash", 
              "message": "Sample_message_for_Creative",
              "page_welcome_message": "{ "ctm_lead_gen_template_id": "Your_messenger_lead_gen_template_id" }"
            }
          }
       }' 

包含影片的 Messenger 名單型廣告之廣告創意範例

我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 ad_account_id
curl -X POST "https://graph.facebook.com/v19.0/act_AD_ACCOUNT_ID/adcreatives"
    -H "Content-Type: application/json" 
    -d '{
          "access_token": "Your_page_access_token",
          "degrees_of_freedom_spec": {
            "creative_features_spec": {
              "standard_enhancements": { "enroll_status": "OPT_IN" }
            }
          },
          "name": "Your_lead_ad_video_ad_name",
          "object_story_spec": {
            "page_id": "your_page_id",
            "video_data": { 
              "call_to_action": {
                "type": "MESSAGE_PAGE",
                "value":{ "app_destination": "MESSENGER" }
              },
              "image_url": "Your_thumbnail_url", 
              "link_description": "Your_link_description ",
              "message": "Sample message for Creative ",
              "page_welcome_message": "{ "ctm_lead_gen_template_id": "Your_messenger_lead_gen_template_id" }",
              "video_id": "Your_video_id" 
            }
          }
       }' 

贊助訊息這類廣告會以訊息形式傳送至目前與您企業的 Facebook 專頁展開 Messenger 對話的所有帳戶管理中心帳戶。您亦可加入其他廣告目標設定條件,例如人口統計資料、地理位置資料、自訂廣告受眾或興趣。

必要條件

  • 請勿使用自訂廣告受眾 來排除用戶,使其無法接收贊助訊息
  • targeting.publisher_platforms 必須只設為 messenger
  • targeting.messenger_positions 必須只設為 sponsored_messages
  • device_platforms 必須同時包含 mobiledesktop
  • promoted_object 必須是您企業的 Facebook 專頁編號
  • 請務必為按鈕指定承載或網址
  • 您必須在對話中提供選項,讓用戶可以選擇不接收訊息或封鎖桌面電腦以及流動裝置上的訊息。

限制

  • 僅支援帶有 billing_event=IMPRESSIONSoptimization_goal=IMPRESSIONS 的 CPM。最低出價因國家/地區而異,了解詳情。
  • 僅只支援帶按鈕的文字或圖像,或是快速回覆。

    如要建立贊助訊息的廣告創意,您的要求需包含 object_id 參數(設為您的 Facebook 專頁編號)、object_type(設為 SHARE)、messenger_sponsored_message 物件(其中 message.text 參數設為廣告文字),以及包含下列參數的 message.attachment 物件:

    Messenger 贊助訊息訊息附件快速參考資料

    圖像廣告創意要求範例

    我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 ad_account_id
    curl -X POST "https://graph.facebook.com/v19.0/act_AD_ACCOUNT_ID/adcreatives"
         -H "Content-Type: application/json" 
         -d '{
               "access_token": "Your_page_access_token"
               "object_id": "Your_page_id",
               "object_type": "SHARE",
               "messenger_sponsored_message": {
                 "message":{
                   "text":"Your_ad_creative_text",
                   "attachment":{
                     "type":"template",   
                     "payload":{
                       "template_type":"generic", 
                       "elements":[{
                         "title":"Your_image_text",
                         "image_hash":"Your_image_hash",
                         "buttons":[{
                           "type":"web_url", 
                           "title":"Your_button_text", 
                           "url":"Your_destination_URL"
                         }]
                       }]
                     }
                   }
                 }
               }
             }'
    

    快速回覆廣告創意要求範例

    如要建立帶有快速回覆訊息的贊助訊息,您需設定 messenger_sponsored_message.message 物件,其中 text 設為您的問題或指令,並為每個快速回覆選項設定 quick_replies 陣列。

    我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 page_access_token
    curl -X POST "https://graph.facebook.com/v19.0/act_ad_account_id/adcreatives"
         -H "Content-Type: application/json" 
         -d '{
               "access_token": "Your_page_access_token"
               "object_id": "Your_page_id",
               "object_type": "SHARE",
               "messenger_sponsored_message": {
                 "message":{
                   "text":"Your_ad_creative_text",
                   "quick_replies":[
                     {
                       "content_type": "text",
                       "title": "Your_reply_first_option_reply",
                       "payload": "Information_sent_via_postback_webhook_when_option_1_is_selected"
                     },
                     {
                       "content_type": "text",
                       "title": "Your_reply_second_option_reply",
                       "payload": "Information_sent_via_postback_webhook_when_option_2_is_selected"
                     }
                   ]              
                 }
               }'
    

    廣告創意回應範例

    成功的話,您的應用程式就會收到以下 JSON 回應,其中包含廣告創意編號。

    {
      "id": "ad_creative_id"
    }
    

    步驟 4:建立廣告

    在建立廣告時,您需將廣告創意與廣告組合連結。如要建立廣告,請向 /act_ad_account_id/ads 端點傳送 POST 要求,其中 ad_account_id 即您的 Meta 廣告帳戶編號。您的要求必須包括以下內容:

    • access_token
    • adset_id(來自步驟 2
    • creative_id(來自步驟 3
    • name
    • status

    廣告帳戶廣告快速參考資料

    廣告創意廣告要求範例

    我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 ad_account_id
    curl -X POST "https://graph.facebook.com/v19.0/act_ad_account_id/ads"
         -H "Content-Type: application/json" 
         -d '{
               "access_token": "Your_page_access_token",
               "adset_id": "Your_ad_set_id",
               "creative": { "creative_id": "Your_ad_creative_id" },
               "status": "PAUSED"
             }'
    

    成功的話,您的應用程式就會收到以下 JSON 回應,其中包含廣告編號。

    {
      "id": "ad_id"
    }
    

    步驟 5:發佈廣告

    廣告管理員 中驗證您的廣告是否確實存在。點擊右上角的檢查並發佈按鈕。選擇宣傳活動、用於宣傳活動的廣告組合及廣告。

    您可以從廣告管理員發佈廣告,也可使用 API 發佈。如要使用 API 發佈,請重複執行步驟 4,並將 status 參數設為 ACTIVE

    Meta 會審查您的廣告,此時狀態會顯示為 PENDING_REVIEW。當廣告通過審核後,狀態會變為 ACTIVE,此時廣告將會刊登。

    Messenger 發訊廣告進階素材

    您可以建立包含多個訊息素材的訊息,例如通話提示、多個範本等。您可以為 *_data.page_welcome_message 值設定物件陣列而非字串值,從而加入這些素材。

    專頁歡迎訊息陣列快速參考資料

    新增通話提示

    您可以將 *_data.page_welcome_message 的值設定為定義通話提示素材的物件陣列,從而為 Messenger 發訊廣告新增通話提示。將 landing_screen_type 參數設為 call_promptmedia_type 設為 text,帶有 texttext_format.message 物件設為您的歡迎訊息文字,以及 call_prompt_data.call_prompt_message 設為與您企業通話的話題引子。

    我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 page_access_token
    ... 
          "page_welcome_message": "[
            {
              "landing_screen_type": "call_prompt",
              "media_type": "text",
              "text_format": {
                "message": {
                  "text": "Your_welcome_message",
                  "call_prompt_data": { 
                    "call_prompt_message": "Your_call_prompt_message"
                  }
                }
              },
            }
          ]"
    ...
    

    新增一個或多個範本

    如要建立包含多個範本的廣告,您需將 *_data.page_welcome_message 參數設為帶有訊息範本 的陣列。下方範例展示如何新增快速回覆的範本。

    我們已設定特定格式以便閱讀。請將以粗體及斜體標示的值替換為您的值,如 page_access_token
    ... 
          "page_welcome_message": "[{
            'message': {
              'text':'  Your_question_or_directive  ',
              'quick_replies':[
                {
                  'content_type':'text',
                  'title':'  Option_1  ',
                  'payload':'  Option_1_information_for_webhook  '
                },
                {
                  'content_type':'text',
                  'title':'  Option_2  ',
                  'payload':'  Option_2_information_for_webhook  '
                },
                {
                  'content_type':'text',
                  'title':'  Option_3  ',
                  'payload':'  Option_3_information_for_webhook  '
                }
              ]
            }
          }]",
    ...
    

    後續步驟

    如未設定 Webhooks 以在用戶點擊廣告時接收通知,請加以設定。