Php stdClass对象([error]=>;stdClass对象([type]=>;OAutheException[message]=>;验证应用程序时出错。))

Php stdClass对象([error]=>;stdClass对象([type]=>;OAutheException[message]=>;验证应用程序时出错。)),php,facebook,request,signed,Php,Facebook,Request,Signed,我验证了我的appid、appsecret是否正确,以及我的访问令牌是否正确有效。我仍然收到“错误验证应用程序”。错误消息。有人知道为什么会这样吗 <?php define('YOUR_APP_ID', 'x'); define('YOUR_APP_SECRET', 'x'); function get_facebook_cookie($app_id, $app_secret) { $args = array(); parse_str(trim($_COOKIE['fbs_'

我验证了我的appid、appsecret是否正确,以及我的访问令牌是否正确有效。我仍然收到“错误验证应用程序”。错误消息。有人知道为什么会这样吗

<?php

define('YOUR_APP_ID', 'x');
define('YOUR_APP_SECRET', 'x');

function get_facebook_cookie($app_id, $app_secret) {
  $args = array();
  parse_str(trim($_COOKIE['fbs_' . $app_id], '\\"'), $args);
  ksort($args);
  $payload = '';
  foreach ($args as $key => $value) {
    if ($key != 'sig') {
      $payload .= $key . '=' . $value;
    }
  }
  if (md5($payload . $app_secret) != $args['sig']) {
    return null;
  }
  return $args;
}

$cookie = get_facebook_cookie(YOUR_APP_ID, YOUR_APP_SECRET);

$access_token="AAADDMjYCsTABAAbzGa3vLtSq7rt4iZBmnuFXUDRVxVnZAm8HbQp2chBBUIfJpAADiJWOu5TIPr0tnnKDhLEbXCicqLl8sP6KFT1vb8ZCkz6PeuUMUIs";
$url = 'https://graph.facebook.com/me?access_token=' . $access_token;

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($ch);
curl_close($ch);

$user = json_decode($response);
print_r($user);

?>
<html>
  <body>
    <?php if ($cookie) { ?>
      Welcome <?php  ?>
    <?php } else { ?>
      <fb:login-button></fb:login-button>
    <?php } ?>
    <div id="fb-root"></div>
    <script src="http://connect.facebook.net/en_US/all.js"></script>
    <script>
      FB.init({appId: '<?= YOUR_APP_ID ?>', status: true,
               cookie: true, xfbml: true});
      FB.Event.subscribe('auth.login', function(response) {
        window.location.reload();
      });
    </script>
  </body>
</html>

欢迎
FB.init({appId:'',状态:true,
cookie:true,xfbml:true});
FB.Event.subscribe('auth.login',函数(响应){
window.location.reload();
});

我建议您对appid和appsecret保密。不要在这样的网站上发布