English 中文(简体)
How to enable commenting on the Facebook Like Button
原标题:

I m integrating the Facebook Like Button into a site. The likeing functionality is working fine except that you cannot add comments to your like after you ve clicked the like button. Several sites including CNN has this working so this should be possible.

The docs mention that you need to use the JavaScript SDK to get commenting to work, which I am doing; however I cannot get commenting to show up.

A fuller-featured Like button is available via the XFBML tag and requires you use the new JavaScript SDK. The XFBML version allows users to add a comment to their like as it is posted back to Facebook.

I cannot find details on which options are available for this more "fully-featured" XFBML like button.

I m wondering if there is a setting that I need to add, an option that I m not passing in, or anything that I ve overlooked.

I am on a dev server, and I m linking back to the live site for now. Perhaps the ContactURL and the base URL of the liked page need to be the same in order to get commenting to work?

Here s how I m embedding the facebook like button:

<!-- facebook -->
<div id="fb-root"></div>
<script type="text/javascript">
  window.fbAsyncInit = function() {
    FB.init({appId:  XXXXXXXXXXXXXX , status: true, cookie: true, xfbml: true});
  };
  (function() {
    var e = document.createElement( script ); e.async = true;
    e.src = document.location.protocol +  //connect.facebook.net/en_US/all.js ;
    document.getElementById( fb-root ).appendChild(e);
  }());
</script>
<!-- facebook -->

...

<fb:like href="example.com" layout="button_count" show_faces="false" width="100" colorscheme="dark"></fb:like>
最佳回答

You need to make sure that the "connect url" for your appid matches the domain you re putting the like button on. To do this, go to the "Edit Settings" page, and in the "Connect" section of the settings, fill on your "Connect URL".

Facebook s documentation never mentions this.

问题回答

暂无回答




相关问题
VS 10 mangles html comments?

Using the latest VS 10 we created html markup, then commented it with html comments. The file on disk is not mangled, but when it renders, it renders the html comment tags, then removes some of the ...

Comments & OpenSource software [closed]

This may sound like a foolish question or an observation, but i have seen that most of the times when one tries to look at the opensource code, there are no comments or just one or two lines at the ...

Including commented Class declaration in implementation file

Everyone knows the advantages of a more readable code. So in order to make my code more readable what i do normally is include the commented class declaration in the implementation file of that class....

pair programming with comments [closed]

Over the years, I ve discovered that green-programmers tend to read the comments rather than the code to debug issues. Does having one person document the other person s code (and vice-versa) with ...

Commenting JavaScript functions á la Python Docstrings

It is valid JavaScript to write something like this: function example(x) { "Here is a short doc what I do."; // code of the function } The string actually does nothing. Is there any reason, ...

热门标签