0

我想知道是否有办法检查这些即时通讯工具的在线状态(指示器):GTalk、MSN (Skype)、Facetime(或 Messages)。

如果我能获得用户的在线状态以查看他/她是否在线、离开、忙碌、空闲等任何即时通讯工具:AIM、GTalk、ICQ、MSN 和 YAHOO,那就太好了。(如果有其他 IM 服务提供此类详细信息,请告诉我)。谢谢。

我可以通过卷曲到(big.oscar.aol.com 为 AIM,web.icq.com 为 icq 和 opi.yahoo.com 为 YAHOO)获取 AIM、ICQ 和 YAHOO 的在线状态并解析响应。

注意: GTalk 曾经有徽章,现在不再可用。这是我正在寻找的一个很好的例子:http: //motyar.blogspot.com/2010/04/gtalk-status-checker-with-php.html

4

1 回答 1

1

这将因服务而异。我最近这样做了,并找到了一篇关于如何为Skype执行此操作的博客文章,但不知道其他人。

代码属于 annar2r,我没有做任何代码:

<?php

function get_skype_status($username, $image = false, $icon = false ){
    //creating url
    //if you need small icon
    if($image && $icon)
    {
    /***************************************
        Possible types of images:

        * balloon            - Balloon style 
        * bigclassic        - Big Classic Style 
        * smallclassic        - Small Classic Style 
        * smallicon        - Small Icon (transparent background) 
        * mediumicon        - Medium Icon 
        * dropdown-white    - Dropdown White Background 
        * dropdown-trans    - Dropdown Transparent Background
        ****************************************/
        return "http://mystatus.skype.com/smallicon/".$username;
    }
    //if you need image
    else if($image)
    {
        return "http://mystatus.skype.com/".$username;
    }
    //or just text
    else
    {
    /***************************************
        Possible status  values:
         NUM        TEXT                DESCRIPTION
        * 0     UNKNOWN             Not opted in or no data available. 
        * 1     OFFLINE                 The user is Offline 
        * 2     ONLINE                  The user is Online 
        * 3     AWAY                    The user is Away 
        * 4     NOT AVAILABLE       The user is Not Available 
        * 5     DO NOT DISTURB  The user is Do Not Disturb (DND) 
        * 6     INVISIBLE               The user is Invisible or appears Offline 
        * 7     SKYPE ME                The user is in Skype Me mode
        ****************************************/
        $url = "http://mystatus.skype.com/".$username.".xml";
        //getting contents
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, $url);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        $data = curl_exec($curl);
        curl_close($curl);

        $pattern = '/xml:lang="en">(.*)</';
        preg_match($pattern,$data, $match); 

        return $match[1];   
    }
}

//getting skype status icon
$ico = get_skype_status("ar2rsawseen", true, true);
echo "<p>Skype icon:</p>";
echo "<p><img src='".$ico."'/></p>";

//getting skype status image
$image = get_skype_status("ar2rsawseen", true);
echo "<p>Skype image:</p>";
echo "<p><img src='".$image."'/></p>";

//getting skype status text
$status = get_skype_status("ar2rsawseen");
echo "<p>Skype status:</p>";
echo "<p>".$status."</p>";

?>
于 2013-05-01T15:18:06.937 回答