我正在尝试为facebook制作一个网络应用程序。我创建了文件index.php(仅用于主要测试)并输入了网站到画布回调URL的URL。 (我在http://developers.facebook.com注册了app。)。目前,我在测试网址时遇到错误:
The request sent to your callback URL failed with the following error:
Response does not match challenge, expected value = '1984864235', received='<!DOCTYPE html> <htm...'
Request URL:
http://akworldweb.com/?hub.mode=subscribe&hub.challenge=1984864235
以下是PHP文件示例:
<!DOCTYPE html>
<html>
<body>
<h1>My first PHP page</h1>
<?php
echo "Hello World!";
?>
</body>
</html>
你可以告诉我,我做错了什么。我对此都很陌生。任何帮助都非常感谢。谢谢:))
答案 0 :(得分:0)
您的示例PHP文件无法验证质询。实际上,您的示例PHP文件根本不做任何事情。
当Facebook发布回调时,您的回调需要与挑战相匹配。
请重新阅读https://developers.facebook.com/docs/graph-api/webhooks/v2.5