I am using Twitterizer .net in order to make a console app in c# and post some twit updates from my twit app.
I created the app in twitter and have all the right tokens set
In my program I send twitter status like this
public static bool Twit(string message)
{
var options = new StatusUpdateOptions();
TwitterResponse<TwitterStatus> tweetResponse = TwitterStatus.Update(OathTokenHelper.OathTokens, message, options);
return tweetResponse.Result == RequestResult.Success;
}
And as a result I get a "Timestamp out of bounds" and status "Unauthorized"
I have checked my Computer time and all is fine. Do you know what it might be causing this error?