Facebook API - 在 Rails 模型中使用多个请求
我编写了一个我不满意的应用程序。本质上,它通过以下几种方式查询 Facebook API:
- 获取所有帖子的列表
- 检索每个帖子
- 检索每个帖子的评论
我可以在 1 个 API 请求中获取所有帖子的列表,但我已将每个后续 API 请求嵌套在一个循环中。我想一次性完成这一切,是否有关于立即发送所有请求,然后在 API 请求传入时对其进行处理的阅读内容?
我正在寻找阅读、GEMS、策略建议。
谢谢!
I have written an app that I am not happy with. Essentially it queries the Facebook API in a few ways:
- Gets a list of all posts
- Retrieves each post
- Retrieves each posts comments
I can get a list of all posts in 1 API request, but I've nested each subsequent API request in a loop. I'd like to do this all at once, and is there any reading on sending all the requests at once, and then handling the API requests as they come in?
I'm looking for reading, GEMS, suggestions at strategies.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这里的答案:在 Ruby 中执行非阻塞 I/O 的首选方式是什么?
不错的选择似乎是:
Take a look at the answers here: What is the preferred way of performing non blocking I/O in Ruby?
Good options seems to be: