views:

35

answers:

2

I want to use twitter web service in my silverlight application but don't know where I can find skd and web service reference for the twitter ?

+2  A: 

When using twitter API with silverlight or any .net client app, you cannot just add a service reference to the project. You have to hand code and make direct calls to each feature you require. You should go through the their API wiki here and a tutorial here.

If you want things done fast, use a library like tweetsharp.

Shawn Mclean