facebook在php中使用xmpp聊天

时间:2011-12-16 11:23:13

标签: facebook

我想连接到chat.facebook.com

我正在使用php代码:

 $app_id='******************';
  $app_secret='**********************';
  $my_url = "https://apps.facebook.com/myapplication/testingchat.php";
  $uid = '********************';
  $access_token = get_access_token($app_id,$app_secret,$my_url);
  print "access_token: ".$access_token."<br>";

  $options = array(
    'uid' => $uid,
    'app_id' => $app_id,
    'server' => 'chat.facebook.com',
   );

  // prints options used
  print "server: ".$options['server']."<br>";
  print "uid: ".$options['uid']."<br>";
  print "app id: ".$options['app_id']."<br>";

  $fp = fsockopen("chat.facebook.com", 5222, $errno, $errstr);
      if (!$fp) {
        print "$errstr ($errno)<br>";
      } else {
        print "connnection open<br>";
      }

我无法访问服务器。我收到的错误是“连接超时(110)”

基本上我想使用xmpp在我的应用程序中使用facebook聊天。

请指导我。

由于

0 个答案:

没有答案