Posts

Showing posts from May, 2009

Twitting using Yedda Twitter .Net/C# API

using System; using System.Collections.Generic; using System.Linq; using System.Text; using Yedda; using System.Xml; namespace TwitterTest { class Program { static void Main( string [] args) { Twitter twit = new Twitter (); String str = twit.Update( "yourUserName" , "YourPassword" , "A twit from my Yedda Twitter API" , Twitter . OutputFormatType .XML); Console .Read(); } } } Yedda Twitter C# API Update method: I was getting the following error message while twitting using the Yedda Twitter API: The remote server returned an error: (417) Expectation Failed. (ASP.NET 2.0 / C#) The highlighted line shown in the code snippet below solved the problem. protected string ExecutePostCommand( string url, string userName, string password, string data) { try { WebReque