通过php发送icq消息

时间:2016-02-24 00:55:21

标签: php icq

我需要从php向icq发送消息。我正在使用WebIcqPro。

<?php

require_once('WebIcqPro.class.php');

$uin = '******';
$pass = '******';
$to_uin = '******';

$icq = new WebIcqPro();
$icq->debug = true;
$icq->setOption('UserAgent', 'miranda');
if ($icq->connect($uin, $pass)) {
    $icq->sendMessage($to_uin, 'Hello! This is a test message');
} else {
    die('ICQ connection error: ' . $icq->error);
}

此代码失败并显示错误:错误:服务器关闭连接

P.S。:也许还有其他工作 icq类?

1 个答案:

答案 0 :(得分:2)

增加限制。

编辑文件&#34; WebIcqPro.class.php&#34;:

// $this->setTimeout(6, 0); 
$this->setTimeout(60, 60000);