From e032223e8b43b643502ab5509591c2b06f13f750 Mon Sep 17 00:00:00 2001 From: Robert Chmielowiec Date: Tue, 10 Mar 2020 14:54:58 +0100 Subject: [PATCH] Remove facebook broadcast api (#12278) --- source/_integrations/facebook.markdown | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/source/_integrations/facebook.markdown b/source/_integrations/facebook.markdown index bfc894977be..396f927e8da 100644 --- a/source/_integrations/facebook.markdown +++ b/source/_integrations/facebook.markdown @@ -119,20 +119,3 @@ script: title: Blue payload: DEVELOPER_DEFINED_PAYLOAD_FOR_PICKING_BLUE ``` - -You can now also use Facebook public beta broadcast API to push messages to ALL users who interacted with your chatbot on your page, without having to collect their number. This will scale to thousands of users. Facebook requires that this only be used for non-commercial purposes and they validate every message you send. Also note, your Facebook bot needs to be authorized for "page_subscritions" if you want to make it to all but can be used right away to a selected group of testers of your choice. - -To enable broadcast just use the keyword "BROADCAST" as your target. Only put ONE target BROADCAST as below: - -```yaml -- alias: Facebook Broadcast - trigger: - platform: sun - event: sunset - action: - service: notify.facebook - data: - message: Some text you want to send - target: - - BROADCAST -```