
October 14th, 2009, 11:29 AM
|
Friend of Wrox
|
|
Join Date: Dec 2006
Location: Berkshire, United Kingdom.
Posts: 104
Thanks: 9
Thanked 1 Time in 1 Post
|
|
Code:
objHTTP.open "POST",
Code:
"http://twitter.com/direct_messages/new.xml?user="
&strRecipient&"&text="&strMessage&"", false, strUsername, strPassword
objHTTP.send
' The function stores the Twitter response to the result of the function so you can use this later
SendToTwitter = objHTTP.responseText
Set objHTTP = nothing 'Release the object
End Function
Last edited by aspless; October 14th, 2009 at 11:49 AM..
|