I just found the 52 weeks Coding Challenge by Dream in Code and decided to take some time I am supervising my students to try coing a Twitter program.
So I've created a little C# program that sends a direct message.
I got the actual code from http://www.dreamincode.net/code/snippet4094.htm
and the idea from http://www.dreamincode.net/forums/showtopic150412.htm
The implementation code is incredibly simple:
sendDirectMessage(
"kathweaver", "password", txtTo.Text, txtMessage.Text);
I've got my twitter username, twitter password hard coded and am sending the text from a textbox for the recipent and the message.
Leave a Reply