views:

712

answers:

4

Possible Duplicate:
What is the best Twitter API wrapper/library for .NET?

My boss wants to make periodic updates to the company twitter account but doesn't really want to mess with it through the web or follow others.

I'm sure there is plenty of info but I thought I would start out by asking the experts

is there a twitter class or dll that I can use to do simple posting via twitter?

(similar to the flicker.net librarby?)

+3  A: 

Check out tweetsharp.com - sounds like it could be just what you're looking for.

Scott Ivey
+1  A: 

Start reading about the Twitter REST API Method: statuses/update. All you need to do is formulate the proper WebRequests (one for authentication, one for the update).

Updates the authenticating user's status. Requires the status parameter specified below. Request must be a POST. A status update with text identical to the authenticating user's current status will be ignored to prevent duplicates.

Something along the lines of:

http://twitter.com/statuses/update.xml
Frank Krueger
A: 

Tweet from the PowerShell commmand-line it doesn't get any simpler than this.

Cade Roux