tags:

views:

210

answers:

4

I would like to make my app post status update to the users' account? (like wefollow.com) do you know which twitter api function is that?

and also I would like to use sign in with twitter. found this but they don't have any code examples http://apiwiki.twitter.com/Sign-in-with-Twitter

A: 

I've used this http://jdp.github.com/twitterlibphp/ to work with twitter, it's easy. I suggest it if you're using PHP.

Pons
i use .net but thx anyway
appdev
The linked library uses username/password authentication which will be deprecated fairly soon. Oauth should be used instead. For PHP, try Abraham Williams' http://github.com/jdp/twitterlibphp.
fsb
where did you see that it will be deprecated soon?
appdev
+3  A: 

The update method

David Dorward
+1  A: 

You need Update method, and you can use twitterizer to call twitter API from .NET, some examples here at .NET Zone.

terR0Q
A: 

Here's a somewhat recent article on Twitter OAuth with C#. I don't do C#, so I can't vouch for how good it is, but should be a good start.

Michael D. Ivey
I would point out that most of the .NET examples seem to be using Basic Auth, and you should really be looking at OAuth.
Michael D. Ivey