推特 - 没有错误,没有推文



>我正在尝试从磁盘发送带有图像的推文。我当前的代码如下:

try
        {
            Auth.SetUserCredentials(consumerkey, consumersecret, accesstoken, accesstokenSecret);
            Tweet.PublishTweetWithImage(message, File.ReadAllBytes(filePath));
        }
        catch (Tweetinvi.Exceptions.TwitterException x)
        {
            MessageBox.Show(x.Message.ToString());
        }

代码似乎正在运行,未返回异常,但推文尚未发布。感谢任何帮助或见解。

请查看 ExceptionHandler 的文档: https://github.com/linvi/tweetinvi/wiki/Exception-Handling。

ExceptionHandler.SwallowWebExceptions = false;

然后将引发异常。

相关内容

  • 没有找到相关文章

最新更新