Hey !
I’m trying to implement the FB like button for my activities and I want the content shared on Facebook to be the one posted in the activity liked.
So what I’m trying to achieve is to pass bp_get_activity_content_body to an Open Graphic tag: <meta property="og:description" content="" />
I added a hook in header.php:
<?php do_action( 'fb_tags' ) ?>
And called it from entry.php:
<?php add_action ('hs_fb_tags', 'bp_get_activity_content_body'); ?>
I’m sure I’m doing something wrong and I’d appreciate the help 
Thanks !