0

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

我的代码看起来像

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).....

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

4

1 回答 1

1

我找到了解决方案。图片一定要小。文档建议的甚至小于 5mb。我使用了一个只有 100KB 的图像,它工作正常。如果我想发布更大的图像/视频(甚至只是一张图片),您必须使用分块媒体发布功能

于 2018-04-10T13:01:47.960 回答