I have included Facebook customer chat plugin on my website. It works fine for the first day. From the second day, it\'s not working. I have seen an error message in Google
Some of the common things
referrer policy is not set to "no-referrer"
some other reasons,
source, more info
Make sure your FB page is published.
I think that's not coming from facebook but your website. Your browser refuses to display an iframe from a "bad" source, in this case facebook.com.
You may read
Or greenlight any requests from facebook like in this example (which is not the best way to do it, as it undercuts some major protection against XSS):
Link at Stackoverflow: Content-Security-Policy issue
There are two things required to avoid this message:
Ensure you have the correct Facebook page ID set in your HTML. This should be the numeric ID, not what you see in the URL. I found my page's numeric ID via https://findmyfbid.com
Example:
<div class="fb-customerchat" page_id="6708927376315932">
</div>
Whitelist your domain at Your Page > Settings > Messenger Platform. Ensure this matches your domain, uses HTTPS protocol, and include the port too if using a non-standard port. (And then make sure you hit the Save button!)