开发者

Posting comments to the feed with facebooker2

开发者 https://www.devze.com 2023-03-01 10:45 出处:网络
Does anyone know how to post comments to the feed with facebooker2? I used facebook_ses开发者_StackOverflowsion.user.comment_on with previous version of facebooker(v1).I use Facebooker2 + Mogli gem:

Does anyone know how to post comments to the feed with facebooker2? I used facebook_ses开发者_StackOverflowsion.user.comment_on with previous version of facebooker(v1).


I use Facebooker2 + Mogli gem:

post = Mogli::Post.new
post.message = "Just a message"

me = Mogli::User.find("me", current_facebook_client)
me.feed_create(post)


Thanks, I meant sending comments to the existing post. I have found the solution:

current_facebook_client.post(THE_FACEBOOK_POST_ID + "/comments", nil, :message => "This is comment to the existing post")

0

精彩评论

暂无评论...
验证码 换一张
取 消