This post will throw a light on how we can update our status on Twitter from an asp.net application.
The task is pretty simple as we have libraries already available on the net.
I will be using twitterizer dll to perform the task.
The following are the steps to be followed:
- Download the twitterizer dll from here.
- Add the reference to the dll in your asp.net web application.
- Write the code. For example
Twitter t = new Twitter(UserName, Password);
t.Status.Update(UpdateString);
Following are the methods and the capabilities provided by these methods which are present in the library:
User Methods
- Followers
- Friends
- Follow User
Status Methods
- User Timeline
- Public Timeline
- Friends Timeline
- Show
- Update
- Destroy
Replies
Direct Messages
- Sent To User
- Sent From User
- New Direct Message
References: Twitteriser Home Page