使用经典的asp向Twitter发布消息

时间:2009-12-18 08:57:56

标签: asp-classic twitter

我有一个小问题。我正忙着尝试从经典的asp网站获取消息到twitter,但我只能找到如何使用php和除经典asp之外的所有其他种类的不同语言来做这个的例子。这里有没有人知道如何让它工作? 我一直在网上看了超过2个小时,发现没有任何接近。重写我发现的php api需要很多时间,因为它使用的库我不会把时间用于转换,因为这应该是一个快速的解决方案。

1 个答案:

答案 0 :(得分:1)

人,

我找到了经典asp Twitter消息发布的解决方案。 由于我一直在寻找它很长一段时间,我会在这里发布解决方案,以便其他人可以使用它。实际上这是一个非常简单的解决方案:)。 我们走了:

function asp_twitter_update(strMsg,strUser,strPass) 
    dim oXml,strFlickrUrl 
    strFlickrUrl = "http://twitter.com/statuses/update.xml"
    set oXml = Server.CreateObject("Msxml2.ServerXMLHTTP.3.0") 
    oXml.Open "POST", strFlickrUrl, false, strUser, strPass 
    oXml.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
    oXml.Send "status=" & server.URLencode(strMsg) 
    asp_twitter_update = oXml.responseText 
    Set oXml = nothing 
end function

使用这样的函数:

Dim xmlStatuses,strMsg
strMsg = "Hello twitter, send with Classic ASP"
xmlStatuses = asp_twitter_update(strMsg,"yvanruth","xxxlol")
Response.Write(xmlStatuses)