Hi,
I have spent some hours trying to get this to work and still haven't
managed to send a tweet.
This is the code I have at the moment
Please help.
Sub TWITTER()
Dim symbol As String
Dim Price As String
Dim xml, Username, Password, tweet
Set xml = CreateObject("MSXML2.XMLHTTP")
' change this to your username in quotes
Username = "xxxxxxxx"
' change this to your password in quotes
Password = "xxxxxxxx"
xml.Open "POST", "http://" & Username & ":" & Password &
"
api.supertweet.net/1/statuses/update.xml?status=" & tweet, False
xml.setRequestHeader "Content-Type", "application/x-www-form-
urlencoded "
xml.Send
Set xml = Nothing
End Sub
Thanks in advance.