Click here to Skip to main content
15,906,626 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I got facebook application to post on facebook wall.
Using Facebook SDK 3.01 with C#.NET[^]
This there any other application like this for Twitter.
Posted
Updated 25-Dec-11 22:38pm
v2

go through the below CP article

Here[^]
 
Share this answer
 
Comments
ssyuvaraja 26-Dec-11 4:45am    
Thank you. Any windows application is there.
Update to twitter using windows application C#
SQL
Hi,
      To develop a twitter application for update tweets.

1. Go to this http://www.twitterizer.net/[^] website.
2.Download the source code. In that take dll files (Twitterizer2.dll and Twitterizer.Data.dll).
3.
C#
use;
using Twitterizer;
using Twitterizer.Core;
using Twitterizer.Entities;
using Twitterizer.Data;


OAuthTokens tokens = new OAuthTokens();

at button click:
CSS
try
                  {
                        tokens.AccessToken = "";
                        tokens.AccessTokenSecret = "";
                        tokens.ConsumerKey = "";
                        tokens.ConsumerSecret = "";
                        TwitterResponse<TwitterStatus> tweetResponse = TwitterStatus.Update(tokens, textBox1.Text);
                     }
catch
{
}



4. To get tokens, create an application in twitter at https://dev.twitter.com/blog/tweets-and-buttons[^].

After create an application make at setting make Read and Write.
OAuth tool select as "Post". After save all these go to Details and click on Recreate my access tokens. Use those tokens and post on you'r twitter.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900