ios - STTwitter 无法从 iphone 发布图像
<p><p>这是我用来在推特上发布图片的代码块。 </p>
<pre><code>NSString *imagePath = [ pathForResource:@"info" ofType:@"png"];
UIImage *image = [ 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);
}];
</code></pre>
<p>我得到响应成功,但没有发布图像</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>正如 Twitter 的 <a href="https://dev.twitter.com/docs/api/multiple-media-extended-entities" rel="noreferrer noopener nofollow">documentation</a> 中所述,此方法确实发布图像并返回一个 <code>mediaID</code>,然后可以在推文中使用它。如果您想发布多张图片并在以后的推文中使用它们,请使用此方法。</p>
<p>如果您想将图片与推文一起发布,请连续发布,请参阅 <a href="https://github.com/nst/STTwitter/blob/master/STTwitter/STTwitterAPI.h#L396-L427" rel="noreferrer noopener nofollow">STTwitter's methods</a>对于 <code>POST statuses/update_with_media</code> 端点。</p></p>
<p style="font-size: 20px;">关于ios - STTwitter 无法从 iphone 发布图像,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/25848818/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/25848818/
</a>
</p>
页:
[1]