gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:47:52 26 4
gpt4 key购买 nike

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

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

如果我必须使用另一个 api,您能为我指定一个很棒的 api 吗?因为我找到的所有 API互联网上的内容太老了。

提前致谢

最佳答案

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

您需要 #import <Twitter/Twitter.h> .您从 iPhone 帐户存储中检索 Twitter 帐户(您可以检查是否有多个帐户),然后使用该帐户发布请求。

这里是发布带有图像的推文的方法示例。

- (void)shareTwitterImage:(UIImage *)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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com