Customer Chat Plugin (beta)
- Get link
- X
- Other Apps
The Messenger Platform's customer chat plugin allows you to integrate your Messenger experience directly into your website. This allows your customers to interact with your business anytime with the same personalized, rich-media experience they get in Messenger.

The customer chat plugin automatically loads recent chat history between the person and your business, meaning recent interactions with your business on messenger.com, in the Messenger app, or in the customer chat plugin on your website will be visible. This helps create a single experience for your customers, and enables you to continue the conversation even after they have left your webpage. No need to capture their information to follow up, just use the same conversation in Messenger.
Contents
Feature Support
Browser Support
The customer chat plugin is supported for desktop and mobile with the following exception where it is not supported:
- Messenger in-app browsers
Message Type & Template Support
Currently, the customer chat plugin supports the follow message types and structured message templates:
Feature | Supported |
---|---|
Text Message | Yes |
Video/Image/Audio/GIF | Yes |
Generic/Button Template | Yes (Supported for limited button types)
Postback
URL Button
Call Button
Buy Button
Share Button
Log In Button
Log Out Button
Game Play Button
|
List/Media/Open Graph Template | No |
Quick Replies | Yes (Supported for limited quick reply types)
Text Quick Reply
User Phone Number Quick Reply
User Email Quick Reply
Location Quick Reply
|
Persistent Menu | Yes |
Sender Actions | Yes |
Including the SDK
To use the customer chat plugin, you must include the Facebook JavaScript SDK in the page where the plugin will be rendered.
For instructions on including the SDK, see Facebook JavaScript SDK Quickstart.
Localization & Internationalization
To take advantage of internationalization, including automatic language translation, you need to change the locale of the SDK to match the locale of your site. Specifically, you need to change
en_US
to a supported locale code when initiating the SDK.
For more information, see Localization with Social Plugins and JavaScript SDK.
Dynamic Controls of the Plugin
We also provide APIs that allow you to dynamically control certain behaviors of the plugin such as opening and closing the dialog.
For more information, see Customer Chat SDK.
Setting Up the Plugin
To include the customer chat plugin on your webpage, you can either use the setup tool or setup using developer steps.
Option 1: Using the Setup Tool
For Page Admins, the Messenger Platform also provides an easy setup tool for customizing your customer chat plugin. To use the setup tool, do the following:
- Go to Page Settings > Messenger Platform
- In the 'Customer Chat Plugin' section, click the 'Set Up' Button.
The setup tool provides a simple UI for customizing the greeting message, theme color, displayed response time, and setting the whitelisted domains for the plugin.

On completion, the setup tool automatically generates the code snippets that you can copy/paste to include the customer chat plugin in your webpage.
Option 2: Setup Using Developer Steps
To include the customer chat plugin on your webpage, do the following:
Whitelist the domain of your website
For security reasons, the plugin will only render when loaded on a domain that you have whitelisted. Refer towhitelisted_domains
reference to learn how to whitelist your domain programmatically.Domain Name and HTTPS Required
Domains must meet the following requirements to be whitelisted:- Served over HTTPS
- Use a fully qualified domain name, such as https://www.messenger.com/. IP addresses and localhost are not supported for whitelisting.
Businesses whose Messenger experience is provided by a service provider, will not have access to the page token generator in app settings because they do not own the Facebook app. In this case, you may add or remove whitelisted domains via Page settings. To whitelist a domain, do the following:- Click Settings at the top of your Page
- Click Messenger Platform on the left
- Edit whitelisted domains for your page in the Whitelisted Domains section
Include the plugin on your webpage
To add the plugin to your webpage, include adiv
with the following attributes in your HTML:<div class="fb-customerchat" page_id="<PAGE_ID>"> </div>
By default, the greeting dialog will be shown on desktop and be hidden on mobile. To customize the greeting dialog behavior, you can use thegreeting_dialog_display
and 'greeting_dialog_delay' attributes.Recommended Positioning
We highly suggest not changing the default position of the customer chat plugin from the bottom-right corner of your page.For a complete list of attributes, see the Customer Chat Plugin reference.Optional. Handle the
messaging_postbacks
event for new conversationsIf a new conversation is started via the plugin, and your bot has set up the get started button, we will send amessaging_postbacks
webhook event to your webhook when the user clicks the get started button.If theref
attribute is set in the include for the customer chat plugin, it will be included in the postback event.Optional. Handle the
messaging_referrals
event for existing conversationsFor existing conversations, if theref
attribute is set in the include for the customer chat plugin, amessaging_referrals
webhook event will be sent to your webhook when the conversation is continued via the plugin.Theref
can be any string and can be used for a variety of purposes. For example, you could use it to keep track of which customers have engaged with your business via the plugin.
Customizing the Plugin


The customer chat plugin supports the following customizations. All customizations are set as an attribute when the plugin is included on your webpage:
Attribute | Description |
---|---|
theme_color | Optional. The color to use as a theme for the plugin, including the background color of the customer chat plugin icon and the background color of any messages sent by users. Supports any hexadecimal color code with a leading number sign (e.g. #0084FF), except white. We highly recommend you choose a color that has a high contrast to white. |
logged_in_greeting | Optional. The greeting text that will be displayed if the user is currently logged in to Facebook. Maximum 80 characters. |
logged_out_greeting | Optional. The greeting text that will be displayed if the user is currently not logged in to Facebook. Maximum 80 characters. |
greeting_dialog_display | Optional. Sets how the greeting dialog will be displayed. The following values are supported:
show on desktop and hide on mobile. |
greeting_dialog_delay | Optional. Sets the number of seconds of delay before the greeting dialog is shown after the plugin is loaded. This can be used to customize when you want the greeting dialog to appear. |
minimized | Deprecation NoticeThis attribute is now deprecated. Please usegreeting_dialog_display to customize your plugin instead. The greeting_dialog_delay attribute will take precedence of the minimized attribute.
|
ref | Optional. You may pass an optional ref parameter if you wish to include additional context to be passed back in the webhook event. This can be used for many purposes, such as tracking which page the user started the conversation on, directing the user to specific content or features available within the bot, or tying a Messenger user to a session or account on the website. |
Disabling the Persistent Menu
There may be cases where it is preferable to disable the persistent menu for your bot in the customer chat plugin. To do this, add
"disabled_surfaces": ["CUSTOMER_CHAT_PLUGIN"]
when you set your persistent menu:{
"persistent_menu":[
{
"locale":"default",
"disabled_surfaces": ["CUSTOMER_CHAT_PLUGIN"],
"composer_input_disabled": false,
"call_to_actions":[
{
"title":"My Account",
"type":"postback",
"payload":"PAYBILL_PAYLOAD"
}
]
}
]
}
User Login


If the user is already logged in to their Facebook account, they will be able to start chatting with your bot right away. If they are not logged in, a default welcome message will be display, and they will be prompted to log in or create a new Facebook account.
Pages Using Age/Country Restrictions
If your Page has age or country restrictions set in Page settings, the customer chat plugin will not render for users who are not logged into their Facebook account when they visit your website.Detecting Message Origin
At times, it may be necessary to determine whether a user is engaging with your business using the customer chat plugin. To enable this, the Messenger Platform will include a
"source": "customer_chat_plugin"
property for all postback events and in the tags
array of the message payload for all messages sent from the plugin:"message": {
"mid":"mid.14577641449818:41d102a3e1ae206a38",
"text":"hello, from customer chat!",
"tags": [
{
"source": "customer_chat_plugin"
}
]
}
Troubleshooting Tips
If you're having trouble getting the plugin to render properly, try the tips below:
- If you see a console error like "Refused to display *** in a frame because an ancestor violates the following Content Security Policy directive: ***", check that the domain of the page the plugin is being rendered on has been whitelisted. Also make sure you didn't set the
Referrer-Policy
header tono-referrer
.
- Get link
- X
- Other Apps
where I put the script to do the Detecting Message Origin?
ReplyDelete"message": {
"mid":"mid.14577641449818:41d102a3e1ae206a38",
"text":"hello, from customer chat!",
"tags": [
{
"source": "customer_chat_plugin"
}
]
}