C# + Twitter is incredibly easy

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.

1-21-2010 2-11-00 PM

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.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *