Post 一条带有使用 Swifter 框架/库的照片的推文
Post a tweet with a photo using the Swifter Framework / Library
我正在使用 Swifter Library 尝试 post 带有照片的推文,但每次我尝试时,我都会收到错误消息 "The operation couldn’t be completed. (SwifteriOS.SwifterError error 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)
反而,还是没有成功。
当我 post 一条普通的普通推文时
self.swifter?.postTweet(status: tweetText, inReplyToStatusID: nil, trimUser: false, tweetMode: TweetMode.default, success: { json in
print(json).....
一切正常,我只是在尝试 post 照片时遇到问题。请帮忙。提前致谢
我找到了解决方案。图片一定要小。文档建议甚至小于 5mb。我使用了一个只有 100KB 的图像并且它起作用了。如果我想 post 更大的 image/video (即使只有一张图片)你必须使用分块媒体 post 能力
我正在使用 Swifter Library 尝试 post 带有照片的推文,但每次我尝试时,我都会收到错误消息 "The operation couldn’t be completed. (SwifteriOS.SwifterError error 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)
反而,还是没有成功。
当我 post 一条普通的普通推文时
self.swifter?.postTweet(status: tweetText, inReplyToStatusID: nil, trimUser: false, tweetMode: TweetMode.default, success: { json in
print(json).....
一切正常,我只是在尝试 post 照片时遇到问题。请帮忙。提前致谢
我找到了解决方案。图片一定要小。文档建议甚至小于 5mb。我使用了一个只有 100KB 的图像并且它起作用了。如果我想 post 更大的 image/video (即使只有一张图片)你必须使用分块媒体 post 能力