我有此代码:
require 'koala'
post = Koala::Facebook:API.new("my_access_token")
post.get_object('id', 'post', :fields => "shares"["shares"]["count"])
post.get_object('id', 'likes.summary(true)'['likes']['summary']['total_count'])
这段代码给了我分享和分享的次数,但是我想知道如何按特定的术语而不是'id'搜索Facebook帖子。有人知道吗?
谢谢。