views:

87

answers:

1

Are there any C# libraries for integrating Facebook status updates and twitter updates (preferably with url shortening) in Monotouch without too much heavy lifting?

I know there is a Facebook kit already for objective-C, I really only need status updating however.

+1  A: 

For twitter, TweetSharp is Mono 2.6 compatible, does url shortening, and works with MonoTouch.

For Facebook try .Net Facebook API on codeplex (Specifically just the Facebook.dll and not the web stuff). It is open source and you could run the lib through MoMA to see if anything needs to be changed/updated to be compatible.

Kevin McMahon