- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在使用 Swifter Framework使用特定主题标签获取推文,但我还需要用户图像和名称。
通过这种方法,我可以获取推文文本,并且可以从 JSON 响应中读取个人资料图片和用户名,但无法将其放入变量中。
PS:不要介意索引 0...19 它只是测试
let swifter = Swifter(consumerKey: "MyConsumerKey", consumerSecret: "MyConsumerSecret", appOnly: true)
swifter.authorizeAppOnlyWithSuccess({ (accessToken, response) -> Void in
swifter.getSearchTweetsWithQuery("%23realmadrid", geocode: nil, lang: nil, locale: nil, resultType: nil, count: 20, until: nil, sinceID: nil, maxID: nil, includeEntities: true, callback: nil, success: { (statuses, searchMetadata) -> Void in
for index in 0...19 {
if let statusText = statuses?[index]["text"].string {
self.tweetsArray.addObject(statusText)
}
if let statusName = statuses?[index]["screen_name"].string {
println("@%@", statusName)
}
if let statusImage = statuses?[index]["profile_image_url"].string {
println("@%@", statusImage)
}
}
self.tableView.reloadData()
}, failure: { (error) -> Void in
})
}, failure: { (error) -> Void in
println("error")
})
最佳答案
遇到同样问题的 friend :
if let statusName = statuses?[index]["user"]["screen_name"].string {
tweetsDictionary.setObject(statusName, forKey: "name")
}
if let statusImage = statuses?[index]["user"]["profile_image_url"].string {
var string = statusImage.stringByReplacingOccurrencesOfString("_normal", withString: "", options: NSStringCompareOptions.BackwardsSearch, range: nil)
tweetsDictionary.setObject(string, forKey: "image")
}
这会以用户上传的质量检索 Twitter 用户名和个人资料图片。
关于ios - 使用 Swifter Framework 快速检索 Twitter 用户图像和名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29042785/
我需要了解 pandas 速度优化。对我的问题非常有效的库更快。但是我不了解文档,尤其是矢量化函数。 我的假设是更快的输入只接受矢量输入,而不是数据帧。错了吗? 在文档中这是向量化函数: def bi
https://github.com/glock45/swifter Swifter 是用 Swift 编程语言编写的微型 http 服务器引擎。当我在我的 mac 上运行它时,控制台显示 Serve
我有一个关于面向对象设计原则和 Swift 的问题。我对 Java 非常熟悉,目前我正在参加一个大胆的类(class),以亲 body 验 Swift。 在 Java 社区中(基本上在每个遵循 OOP
我正在尝试访问 tvOS 社交媒体应用程序的 Twitter 数据作为学校项目。我遇到过 Swifter ( https://github.com/mattdonnelly/Swifter ),并注意
我正在使用 Swifter Library尝试发布带有照片的推文,但每次尝试时,我都会收到错误消息“操作无法完成。(SwifteriOS.SwifterError 错误 1.)” 我的代码看起来像 v
我正在尝试将 Swifter 框架安装到此处由 github 提供的 Xcode: https://github.com/mattdonnelly/Swifter 但是安装的不够清楚,里面没有扩展名为
我使用此库 ( https://github.com/mattdonnelly/Swifter ) 成功验证了我的 Twitter 帐户。 但是我该如何保存 session 呢?因此,如果每次我退出并
有人可以向我解释如何使用适用于 iOS 的 Swifter 成功授权 Twitter (oAuth)。我正在尝试创建一个时间表。 let twitterAccount = Swifter(consum
我正在使用 Swifter Framework使用特定主题标签获取推文,但我还需要用户图像和名称。 通过这种方法,我可以获取推文文本,并且可以从 JSON 响应中读取个人资料图片和用户名,但无法将其放
我有一个包含 100 万行的数据框。我有一个函数(我无法矢量化)应用于每一行。我研究了 swifter,它 promise 利用多个进程来加速计算。然而,在 8 核机器上,情况并非如此。 知道为什么吗
我是一名优秀的程序员,十分优秀!