0

我在我的应用程序中通过 TWTweetComposeViewController 使用 twitter 共享。当我尝试发送具有相同内容的推文时,我收到一条错误消息:“推文……是重复的,无法发送”。这种情况仅在我尝试发送与我之前发送的相同内容的推文时发生。

我使用的代码是:

if ([TWTweetComposeViewController canSendTweet])
        {
            TWTweetComposeViewController *tweetSheet = [[TWTweetComposeViewController alloc] init];
            [tweetSheet setInitialText:messageText];
            [self presentModalViewController:tweetSheet animated:YES];
        }

这里有人见过这个案子吗?

4

1 回答 1

4

Twitter 不允许您在短时间内发送相同的推文。这是不可能的。

您必须等待一段时间才能再次发送完全相同的推文。

于 2012-04-20T10:51:47.707 回答