OStack程序员社区-中国程序员成长平台

标题: ios - 在没有 TWTweetComposeViewController 的情况下发送推文 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 00:22
标题: ios - 在没有 TWTweetComposeViewController 的情况下发送推文

我想直接从我的 iPhone 应用发送推文而不显示 TWTweetComposeViewController 弹出窗口

我也想获得所有关注者 有没有办法从 ios5 上的 twitter 框架中做到这一点,或者我应该使用另一个 api!

如果我必须使用另一个 api,你可以为我指定一个很棒的 api 吗?因为我找到的所有 api 互联网上的东西太老了。

提前致谢



Best Answer-推荐答案


如果您使用的是 iOS 5.0 及更高版本,您可以使用 TWRequest 以编程方式从我的应用发布推文。发布推文非常简单,不需要外部框架或任何东西。

您需要 #import 。您从 iPhone 帐户商店检索 twitter 帐户(您可以检查是否有多个帐户),然后使用该帐户发布请求。

这里是使用图片发布推文的方法示例。

- (void)shareTwitterImageUIImage *)image
{
    ACAccountStore *accountStore = [[ACAccountStore alloc] init];
    ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];

    [accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error)
     {
         if(granted)
         {
             NSArray *accountsArray = [accountStore accountsWithAccountType:accountType];

             if ([accountsArray count] > 0)
             {
                 ACAccount *twitterAccount = [accountsArray objectAtIndex:0];

                 TWRequest *postRequest = [[TWRequest alloc] initWithURL:[NSURL URLWithString"https://upload.twitter.com/1/statuses/update_with_media.json"] parameters:[NSDictionary dictionaryWithObject:self.textViewOutlet.text forKey"status"] requestMethod:TWRequestMethodPOST];

                 [postRequest addMultiPartData:UIImagePNGRepresentation(image) withName"media" type"multipart/png"];
                 [postRequest setAccount:twitterAccount];

                 [postRequest performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error)
                  {
                      //show status after done
                      NSString *output = [NSString stringWithFormat"HTTP response status: %i", [urlResponse statusCode]];
                      NSLog(@"Twiter post status : %@", output);
                  }];
             }
         }
     }];
}

关于ios - 在没有 TWTweetComposeViewController 的情况下发送推文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14192003/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4