加入收藏 收藏到QQ书签 收藏到易集网

API

ASP代码

下面是部署在你的服务器上处理涂改网API回调ASP程序,如果你的服务器上使用的是其他语言,请按着其他语言做相应的修改。

ASP代码

Class xhttp
    private cset,sUrl
    Private Sub Class_Initialize()
        cset="UTF-8"
    end sub

    Private Sub Class_Terminate()
    End Sub

    Public Property LET URL(theurl)
        sUrl=theurl
    end property

    public property GET BasePath()
    BasePath=mid(sUrl,1,InStrRev(sUrl,"/")-1)
    end property

    public property GET FileName()
        FileName=mid(sUrl,InStrRev(sUrl,"/")+1)
    end Property
    
    public property GET Html()
        Html=BytesToBstr(getBody(sUrl))
    end Property
    
    private Function BytesToBstr(body)
        'Cset:GB2312 UTF-8
        dim objstream
        set objstream = Server.CreateObject("adodb.stream")
        with objstream
            .Type = 1 '设置返回数据类型为二进制
            .Mode = 3 '打开模式为读写
            .Open    
            .Write body  '将指定的数据装入对像中 body为内容
            .Position = 0 '指定对像内数据的当前指针
            .Type = 2  '设置返回数据类型为文本
            .Charset = Cset  '设定字符集类型
            BytesToBstr = .ReadText '取对象内的文本
            .Close
        end with
        set objstream = nothing
    End Function

    private function getBody(surl)
        dim xmlHttp
        set xmlHttp=server.createobject("MSXML2.XMLHTTP")
        xmlHttp.open "GET",surl,false
        xmlHttp.send
        if xmlHttp.readystate<>4 then
            exit function
        end if
        getBody=xmlhttp.responsebody
        set xmlHttp=nothing
    end function

    Public function saveimage(tofile)
        dim objStream,imgs
        imgs=getBody(sUrl)'取得图片的具休内容的过程
        Set objStream = Server.CreateObject("ADODB.Stream")'建立ADODB.Stream对象,必须要ADO 2.5以上版本
        with objStream
            .Type =1'以二进制模式打开
            .Open
            .write imgs'将字符串内容写入缓冲
            .SaveToFile server.mappath(tofile),2'-将缓冲的内容写入文件
            .Close()
        end with 
        set objstream=nothing
    end function

end class 

'调用ASP类
dim o
set o=new xhttp
o.url=Request("tugai_picture")
o.saveimage "blue.gif"
set o=nothing