messaging_referrals
Esta devolución de llamada se producirá cuando el usuario ya tenga una conversación iniciada con el bot y acceda a dicha conversación en las siguientes situaciones:
Para hacer un seguimiento de las referencias en conversaciones nuevas, consulta evento de postback.
Si deseas comenzar a recibir estos eventos, debes suscribirte a messaging_referrals
en la configuración del webhook de tu app.
{ "sender": { "id": "<PSID>" }, "recipient": { "id": "<PAGE_ID>" }, "timestamp": 1458692752478, "referral": { "ref": <REF_DATA_PASSED_IN_M.ME_PARAM>, "source": "SHORTLINK", "type": "OPEN_THREAD", } }
{ "sender": { "id": "<PSID>" }, "recipient": { "id": "<PAGE_ID>" }, "timestamp": 1458692752478, "referral": { "ref": <REF_DATA_IF_SPECIFIED_IN_THE_AD>, "ad_id": <ID_OF_THE_AD>, "source": "ADS", "type": "OPEN_THREAD", "ads_context_data": { "ad_title": <TITLE_OF_THE_AD>, "photo_url": <URL_OF_THE_IMAGE_FROM_AD_THE_USER_IS_INTERESTED_IN>, "video_url": <THUMBNAIL_URL_OF_THE_VIDEO_FROM_THE_AD>, "post_id": <ID_OF_THE_POST>, "product_id": <PRODUCT_ID> } } }
A partir de la versión 7.0 de la API Graph, el evento de webhook messaging_referrals
del plugin de chat no devolverá el campo sender.id
. Devolverá un nuevo campo sender.user_ref
. Estos cambios tendrán efecto en todas las versiones anteriores de la API Graph a partir del 2 de noviembre de 2020.
{ "sender":{ "user_ref":"<USER_REF>" }, "recipient":{ "id":"<PAGE_ID>" }, "timestamp": 1458692752478, "referral": { "ref": "<REF_DATA_PASSED_IN_CODE>", "source": "CUSTOMER_CHAT_PLUGIN", "type": "OPEN_THREAD", "referer_uri": "<WEBSITE_URL>" } }
{ "sender":{ "id":"<PSID>" }, "recipient":{ "id":"<PAGE_ID>" }, "timestamp": 1458692752478, "referral": { "ref": "<REF_DATA_PASSED_IN_CODE>", "source": "CUSTOMER_CHAT_PLUGIN", "type": "OPEN_THREAD", "referer_uri": "<WEBSITE_URL>" } }
sender
Propiedad | Tipo | Descripción |
---|---|---|
| Cadena | El PSID del usuario que activó el evento de webhook. |
| Cadena | La user_ref del usuario que activó el evento de webhook. Esto está disponible solamente para el evento de webhook del plugin de chat. |
recipient
Propiedad | Tipo | Descripción |
---|---|---|
| Cadena | El identificador de la página. |
referral
Propiedad | Tipo | Descripción |
---|---|---|
| Cadena | La fuente de la referencia. Valores admitidos:
|
| Cadena | El tipo de referencia. Actualmente admite |
| Cadena | El atributo |
| Cadena | El URI del sitio desde donde se envió el mensaje en el plugin de chat de Facebook. |
| Cadena | Una marca que indica si el usuario es un invitado del plugin de chat de Facebook. |
| Objeto | Los datos que contienen información sobre el anuncio de CTM, desde el cual el usuario inició la conversación. |
ads_context_data
Property | Type | Description |
---|---|---|
| String | Title of the Ad. |
| String | [Optional] Url of the image from the Ad the user is interested. |
| String | [Optional] Thumbnail url of the the video from the ad. |
| String | ID of the post. |
| String | [Optional] Product ID from the Ad the user is interested. |