Forum Discussion
2 Replies
Sort By
- AdamN10 years agoKhoros Oracle
Hi Phani,
You should be able to make a call like this:
/restapi/vc/posts/for/labels/text/Twitter/recent
In this case, you'd get back recent posts that are labeled "Twitter".
I hope this helps!
- JakeS10 years agoLithium Alumni (Retired)If you just need messages with one label, you can use the following in LiQL: SELECT * FROM messages WHERE labels.text = 'label' ORDER BY post_time DESC
For multiple label search, use: SELECT * FROM messages WHERE labels.text IN ('label1', 'label2') ORDER BY post_time DESC
Related Content
- 4 years ago
- 12 years ago