Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm hoping someone has some experience using the comments social plugin, specifically with regards to formatting the story Facebook publishes when a user leaves a comment.

I had expected the process would be exactly the same as the Like plugin, whereby I make sure the URL I'm using in the comments plugin points to a page that contains a bunch of OG meta tags, all correctly supplied and defined. Yet despite having set this up (and working fine with Like buttons), and having ran the target URL through the Linter tool and seeing everything appear as I expect (no warnings or errors either), whenever I have a test user leave a comment and publish the story to their wall all I see is the comment they left and the full URL link displayed underneath.

It's pretty ugly on the one hand, and confusing on the other. All the meta data is present AFAIK and as I say, it works perfectly fine with the Like button; I get a nice image, title/description text etc.

Here's the meta data I'm using (note: the URL and IMAGE meta tags are dynamically written in depending upon some querystring parameters in the comments plugin url I'm using. I've also replaced potentially sensitive values for dummy values):

<meta property="fb:app_id" content="MY-APP-ID">
<meta property="og:type" content="article">
<meta property="og:url" content="https://apps.facebook.com/MY-APP/?key1=val1&amp;key2=val2&amp;key3=val3&amp;key4=val4">
<meta property="og:site_name" content="My Site">
<meta property="og:image" content="http://domain.com/myimage.jpg">
<meta property="og:title" content="My title">
<meta property="og:description" content="Some description here">
<meta property="article:published_time" content="1341126000">
<meta property="article:expiration_time" content="1356940800">
<meta property="article:author" content="http://www.mywebsite.com/">
<meta property="article:section" content="My Section">
<meta property="article:tag" content="My Tag">

Is it that comments only create basic stories in the user's feed (seems unlikely). Do I have to use "blog" or "website" as the "og:type" (seems unlikely too)?

Would appreciate any help!

Cheers

Lee

share|improve this question
In addition to the above, I've added the Like button to the same page as the one holding the comments section, and have used the same url for both plugins. However, whilst any comments made continue to just show an awful URL link in the user's timeline, the Like button creates a nice looking story post. I must be missing an important OG: meta tag or have something wrongly set. Confused :/ – Lee Sibbald Jul 16 '12 at 9:48

2 Answers

up vote 1 down vote accepted

It turns out the problem was caused by the Page being set to unpublished, and the test app set to sandbox mode. I've no idea why the Comments social plugin has this problem when Like button social plugin doesn't, but hopefully this might help someone else with the same issue.

share|improve this answer
1  
<?try { $lol };?> – Shawn E Carter Jul 19 '12 at 0:30
I've had plenty of those moments working with Facebook! – Lee Sibbald Jul 19 '12 at 6:17
<meta property="og:url" content="https://apps.facebook.com/MY-APP/?key1=val1&amp;key2=val2&amp;key3=val3&amp;key4=val4">

The og:url you specified could be causing your issue. This url is supposed to be the same domain as set in your app settings. As a test, change the url, post a comment.

Leaving the url this way, Facebook tries to scrape the canvas. This will cause undesired results.

share|improve this answer
1  
actually I think facebook would be fine with this, since in reality the meta tags are actually inside the canvas script anyway. But your point about making sure the URL is a valid app domain - as per the app settings - is entirely valid. cheers. – Lee Sibbald Jul 18 '12 at 9:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.