我正在使用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).....
一切都很完美,我尝试发布照片时只会遇到问题。请帮忙。提前致谢
答案 0 :(得分:1)
我找到了解决方案。图片必须很小。文档建议甚至小于5mb。我使用的图像只有100KB而且有效。如果我想发布更大的图像/视频(甚至只是一张图片),你必须使用分块媒体发布功能