README.md in fb_scrape-0.0.6 vs README.md in fb_scrape-0.0.7
- old
+ new
@@ -78,9 +78,18 @@
puts comment.has_more_replies?
comment.load_all_replies
puts comment.comments.count
```
+### Loading an entire conversation
+
+ ```ruby
+ require 'fb_scrape'
+
+ conversation = FBScrape::Conversation.new(conversation_id, page_id, token)
+ puts conversation.messages.count
+ ```
+
### Using the CLI
You can use the CLI to get a dump in JSON of posts and comments
```