我正在使用 Twitterizer .net 以在 c# 中制作控制台应用程序并从我的 twit 应用程序发布一些 twit 更新。
我在 twitter 中创建了应用程序并设置了所有正确的令牌
在我的程序中,我像这样发送推特状态
public static bool Twit(string message)
{
var options = new StatusUpdateOptions();
TwitterResponse<TwitterStatus> tweetResponse = TwitterStatus.Update(OathTokenHelper.OathTokens, message, options);
return tweetResponse.Result == RequestResult.Success;
}
结果我得到一个“时间戳越界”和状态“未经授权”
我检查了我的电脑时间,一切都很好。你知道它可能导致这个错误吗?