请帮助我,我被困在这里
我正在使用 twitter 引擎 api 将 twitter 集成到我的应用程序中,我已成功集成它并获得了时间线。
但是在提要发布期间,我收到以下错误..
请求 DEFC2D14-F4A6-4508-A990-ED4219FC2C5C 失败并出现错误:错误域 = HTTP 代码 = 401“操作无法完成。(HTTP 错误 401。)
我无法理解我做错了什么,知道吗?
提前致谢..
尝试这个。我使用了这个,这并没有给出任何错误。我希望它也能帮助你......
self.tweetView = [[TWTweetComposeViewController alloc] init];
TWTweetComposeViewControllerCompletionHandler completionHandler=^(TWTweetComposeViewControllerResult result)
{
};
[tweetView setCompletionHandler:completionHandler];
NSURL *url = [[NSURL alloc] initWithString:tweetURL.text];//in case u need to post a URL
[tweetView setInitialText:textView.text]; //custom text in the tweet
[tweetView addImage:[UIImage imageNamed:@"Twitter-icon-3.png"]]; //add image to post
[tweetView addURL:url];
[self presentModalViewController:tweetView animated:YES];