每次都会收到此错误。
{"error":{"message":"(#2201) response does not match challenge, expected value = '1383165001', received=''","type":"OAuthException","code":2201}}{"data":[]}
答案 0 :(得分:0)
您的脚本只需要将挑战返回给Facebook,因此它可以验证响应。我在我的脚本中执行以下操作:
// return hub.challenge to facebook
echo isset( $_GET['hub_challenge'] ) ? $_GET['hub_challenge'] : false;
它基本上只是回应了Facebook发送的挑战。