Online QQ query using asp

Source: Internet
Author: User

The method of this program is to use XMLHTTP to read the corresponding HTML code of the Tencent website to obtain the QQ avatar. Based on this idea, we can also capture a lot of information from other websites, such as weather forecasts and news.


<Script language = "javascript">

<! --

Function getFaceImg (QQcode)

{

Var Re = new RegExp ("^ [1-9] {1} \ d + $", "g ");

If (! QQcode |! Re. test (QQcode) return;

Var URL = "http://search.tencent.com/cgi-bin/friend/oicq_find? Oicq_no = "+ QQcode;

Var http = new ActiveXObject ("Microsoft. XMLHTTP ");

Http. open ("GET", URL, false ,"","");

Http. setRequestHeader ("CONTENT-TYPE", "text/html; Charset = gb2312 ");

Http. send ();


If (http. status! = 200) return;


Var webStr = http. responseText;

Re = new RegExp ("\" (http://img.tencent.com/face/##\ "] +) \" "," ig ");

If (Re. test (webStr ))

Return "<a href = \" http://search.tencent.com/cgi-bin/friend/user_show_info? Ln = "+ QQcode +" \ "target = _ blank title = \" QQ: "+ QQcode +" \ "> </a> ";


Http = null;

}


Document. write ("my QQ status:" + getFaceImg ("44723461 "));

// -->

</Script>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.