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
{
WebRequest request = WebRequest.Create(url);
System.Net.ServicePointManager.Expect100Continue = false;
……
……
Reference:
Yedda Twitter C# Library (or more of an API wrapper) v0.1
// Written by Eran Sandler (eran AT yedda.com)
http://devblog.yedda.com/index.php/twitter-c-library/
thanks shrinand!
ReplyDeletehow did you come up with this solution?
any sample for encrypt twitter password in console application ? thx
ReplyDelete