客户聊天不适用于 React Messenger 客户聊天

Customer chat not working with React Messenger Customer Chat

我想将 Facebook 客户聊天插件集成到 React 网络应用程序中。

应用程序在 URL 上以开发模式运行:http://localhost:3000/

使用的 npm 包:react-messenger-customer-chat

创建了一个新的同名 Facebook 应用程序和 Facebook 站点,并在 Facebook 中为开发者连接它们。

在 React 端存储 App IDPage ID

已添加到设置 -> 基本 -> 应用程序域:localhost(输入“http://localhost:3000/ 但保存为“localhost”

添加了新平台 -> 网站:http://localhost:3000/

在 Messenger 平台上列入白名单 -> 高级设置 -> 列入白名单的域:http://127.0.0.1:3000/, https://127.0.0.1:3000/, https://127.0.0.1:3000/, https://127.0.0.1/

设置 React 代码,将参数传递给新组件。重新加载后,我从 Facebook 收到了 200 条响应,但网站上显示的 div 是空的,我无法让它正常工作(甚至尝试使用纯 Javascript 脚本或创建了一个测试应用程序) .

用于App.js:

import React from 'react';
import MessengerCustomerChat from 'react-messenger-customer-chat';

import { FACEBOOK_APP_ID, FACEBOOK_PAGE_ID } from '../../shared/configuration';

const Chat = (props) => (
  <div>
    <MessengerCustomerChat pageId={FACEBOOK_PAGE_ID} appId={FACEBOOK_APP_ID} />
  </div>
);

export default Chat;

请求URL:

https://www.facebook.com/v2.11/plugins/customerchat.php?app_id=<MY_APP_APP_ID>&channel=https%3A%2F%2Fstaticxx.facebook.com%2Fx%2Fconnect%2Fxd_arbiter%2F%3Fversion%3D46%23cb%3Df197f00e47470a%26domain%3Dlocalhost%26origin%3Dhttp%253A%252F%252Flocalhost%253A3000%252Ff229f87298f7008%26relation%3Dparent.parent&container_width=0&locale=en_US&page_id=MY_APP_PAGE_ID>&request_time=1603379771509&sdk=joey

响应头:

alt-svc: h3-29=":443"; ma=3600,h3-27=":443"; ma=3600
cache-control: private, no-cache, no-store, must-revalidate
content-encoding: br
content-security-policy: default-src * data: blob: 'self';script-src *.facebook.com *.fbcdn.net *.facebook.net *.google-analytics.com *.virtualearth.net *.google.com 127.0.0.1:* *.spotilocal.com:* 'unsafe-inline' 'unsafe-eval' blob: data: 'self';style-src data: blob: 'unsafe-inline' *;connect-src *.facebook.com facebook.com *.fbcdn.net *.facebook.net *.spotilocal.com:* wss://*.facebook.com:* https://fb.scanandcleanlocal.com:* attachment.fbsbx.com ws://localhost:* blob: *.cdninstagram.com 'self' chrome-extension://boadgeojelhgndaghljhdicfkmllpafd chrome-extension://dliochdbjfkdbacpmhlcpmleaejidimm;block-all-mixed-content;upgrade-insecure-requests;
content-security-policy: frame-ancestors https://www.facebook.com;
content-type: text/html; charset="utf-8"
date: Thu, 22 Oct 2020 15:16:11 GMT
expires: Sat, 01 Jan 2000 00:00:00 GMT
facebook-api-version: v8.0
pragma: no-cache
status: 200
strict-transport-security: max-age=15552000; preload
vary: Accept-Encoding
x-content-type-options: nosniff
x-fb-debug: 3hcF+KdxLlfSCdNr3qJFo24n/o8y1GyMJRbFbyeBdoZdhniyI8ummvUQAGY6KB8GAdDePynl83js0QmsH6a5xA==
x-xss-protection: 0

HTML code(第一行'div'应该是'Chat'组件内容,其他两行是npm包注入的):

这个问题的解决方案是什么?

在使用 Facebook 聊天插件开发和测试 React 应用程序时,不能选择域名“localhost”。

  1. 在操作系统的hosts文件中要添加一个新条目,例如:127.0.0.1 react-with-chat-app.com
  2. 在 Windows 运行 命令提示符下以管理员身份使用 ipconfig /flushdns 命令。
  3. 在 React 项目的根目录中添加 .env 文件,并添加新的主机名:HOST=react-with-chat-app.com
  4. 添加http://react-with-chat.com/ to the Facebook Site whitelist domains array, and change the Facebook App's website also to http://react-with-chat.com/.
  5. 重新启动 React 应用程序,并使用:http://react-with-chat-app.com:3000 进行访问,并测试聊天功能。