Method: Facebooker::User#add_like_on
- Defined in:
- lib/facebooker/models/user.rb
#add_like_on(post_id) ⇒ Object
Add a like on a post
See: wiki.developers.facebook.com/index.php/Stream.addLike
post_id the post_id for the post that is being commented on
206 207 208 |
# File 'lib/facebooker/models/user.rb', line 206 def add_like_on(post_id) @session.post('facebook.stream.addLike', {:post_id=>post_id}) end |