I'm creating a twitter client without from scratch and on my 64bit machine at home i can post fine no problem, but on my 32bit laptop I'm getting a error 417 when I come to post a tweet.
I am able to read tweets fine, just posting that seems to be a problem I have also put in the following which some people said stop the error from accuring without any luck
System.Net.ServicePointManager.Expect100Continue = false;
I am unsure what to do next has anyone else got any ideas? the code for posting is below.
thanks matt
string aUrl = "http://twitter.com/statuses/update.xml";
client.Credentials = new NetworkCredential(_username, _password);
System.Net.ServicePointManager.Expect100Continue = false;
byte[] tweetBytes = System.Text.Encoding.UTF8.GetBytes("status=" + tweet);
client.UploadData(aUrl,tweetBytes);
return true;