使用Swifter Framework / Library发布带有照片的推文

时间:2018-04-06 10:56:07

标签: ios swift twitter photo swifter

我正在使用Swifter Library尝试发贴带照片的推文,但每次尝试时,都会收到错误“操作无法完成。(SwifteriOS.SwifterError错误1。)”< / p>

我的代码看起来像

var tweetMedia: [String: Any]? //I then set tweetMedia to a UIImageView from the UIImagePickerControllerOriginalImage let picForTwitterApi = tweetMedia![UIImagePickerControllerOriginalImage] as! UIImage let image = UIImagePNGRepresentation(picForTwitterApi) as Data? self.swifter?.postTweet(status: tweetText, media: image!, inReplyToStatusID: nil, coordinate: nil, placeID: nil, displayCoordinates: nil, trimUser: false, tweetMode: TweetMode.default, success: { json in self.alert(title: "Tweet PHOTO sent", message: "") }, failure: failureHandler)

但它不起作用,我甚至尝试过

self.swifter?.postMedia(image!, additionalOwners: nil, success: { json in print(json)

相反,仍然没有成功。 当我发布普通的香草推文时 self.swifter?.postTweet(status: tweetText, inReplyToStatusID: nil, trimUser: false, tweetMode: TweetMode.default, success: { json in print(json).....

一切都很完美,我尝试发布照片时只会遇到问题。请帮忙。提前致谢

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。图片必须很小。文档建议甚至小于5mb。我使用的图像只有100KB而且有效。如果我想发布更大的图像/视频(甚至只是一张图片),你必须使用分块媒体发布功能