gpt4 book ai didi

ios - STTwitter 无法发布来自 iphone 的图片

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:20:43 24 4
gpt4 key购买 nike

这是我用来将图像发布到 Twitter 的代码块。

NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"info" ofType:@"png"];
UIImage *image = [[UIImage alloc] initWithContentsOfFile:imagePath];
NSData *imageData = UIImageJPEGRepresentation(image,.05);
[_twitter postMediaUploadData:imageData fileName:@"splash_02" uploadProgressBlock:^(NSInteger bytesWritten, NSInteger totalBytesWritten, NSInteger totalBytesExpectedToWrite) {

} successBlock:^(NSDictionary *imageDictionary, NSString *mediaID, NSString *size) {
NSLog(@"xfdf=%@",imageDictionary);

} errorBlock:^(NSError *error) {
NSLog(@"xfdferror=%@",error);

}];

我得到响应成功但没有张贴图片

最佳答案

如 Twitter 的 documentation 中所述,此方法会发布图像并返回一个 mediaID,然后可以在推文中使用它。当您想发布多张图片并在以后的推文中使用它们时,请使用此方法。

如果您想连续发布图片和推文,请参阅 STTwitter's methods对于 POST statuses/update_with_media 端点。

关于ios - STTwitter 无法发布来自 iphone 的图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25848818/

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