• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 在没有 TWTweetComposeViewController 的情况下发送推文

[复制链接]
菜鸟教程小白 发表于 2022-12-13 00:22:31 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我想直接从我的 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap