Facebook's send and like button isn't working together - facebook

I'm a Wordpress plugin developer. I'm working with Facebook's like and send buttons.
I'm using this XFBML code :
<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=119608038121612&xfbml=1"></script><fb:like href="http://jsfiddle.net" send="true" width="450" show_faces="true" font=""></fb:like>
There is send=true parameter but still showing only like button. You can check live example here. I got this code from Official Facebook Developer page. Also this code isn't working on Facebook's site, too.
So, do you have any idea ? How can we solve this problem ?

I just checked but it seems to work fine?
When i run your piece of code i see a 'like' and 'send' button and they both work.

Related

facebook facepile connect shows two different messages

i have implemented facebook facepile via XFBML on two pages. one is home page and other is signup page.
Both pages have same code on it. (using include function, so im 100% its same code) even the XFBML code is same (using include function)
if i open up home page, it shows me
Be the first of your friends to like this.
and if i open the sign up page, it shows me
Basit is using Stackoverflow
does anyone have any idea why its doing this?
i been trying anything to fix it, but its not working.. cant find any solution online eaither.
dont use data-href="url_of_the_page" in <div class="fb-facepile" data-max-rows="6" data-width="292"></div>

No Facebook Comment Box when LIKE BUTTON is clicked on Mobile Browser

Good afternoon everyone.
I have a page where the comment box pops up every time if I am using a normal browser. But, when I go to my iPhone, the comment box does not appear. I searched all over Stack and Google, cannot seem to find anything on it- maybe since new issue or not many people testing this on Mobile? You can test it here to see on iPhone: https://developers.facebook.com/docs/reference/plugins/like/
<fb:like href="https://developers.facebook.com/docs/reference/plugins/like/" layout="button_count" show_faces="false" action="like" colorscheme="light"></fb:like>
Please let me know if anyone has any ideas - thanks in advance!
Dennis
what i have experienced is that if you have a facebook comment box on your page, then the like button will tricker the comment pop up if viewed from a normal browser.

facebook like button and Dreamweaver MX

Hi I have googled this problem and checked the answers in this forum but to no avail. I am using Dreamweaver MX to build my site. I have put the code for Facebook like button into my code as instructed (using the IFrame code) and I am seeing nothing on my page. Please advise
I did this on my .NET site & here is code for facebook like button without using an iFrame:
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<fb:like></fb:like>

Facebook like button count not updating at all

I'm having a problem with the good ol' facebook like button on my site. I've implemented it all, I can click on "like" and it appears on my wall (and on the site the count pops up to say "1"), but the count never updates. If I refresh the page it just shows the "like" button again (no count), and if I log in to facebook with a new account and click on like again, it just says "1" again.
An example page on my site:
http://www.makemeacocktail.com/recipe/6741/
The fql readout (watch the apostrophe escape here, copy and paste dont just click):
https://api.facebook.com/method/fql.query?query=select%20total_count,like_count,comment_count,share_count,click_count%20from%20link_stat%20where%20url='http://www.makemeacocktail.com/recipe/6741/'&format=json
The FB XML that is being used:
<fb:like href="http://www.makemeacocktail.com/recipe/6741/" send="false" layout="button_count" width="50" show_faces="false" font="arial"></fb:like>
Other facebook thoughts etc:
I've got the facebook open graph meta data in the head
The js call to facebook happens as the last thing on my page, after the FBML:
<script src="http://connect.facebook.net/en_US/all.js#appId=187430904631019&xfbml=1"></script>
<script>
FB.init({
appId : '187430904631019',
status : true,
cookie : true,
xfbml : true
});
</script>
I've also got the facebook page like at the bottom of my page:
<div id="fb-root"></div><fb:like-box href="http://www.facebook.com/makemeacocktail" width="292" show_faces="false" stream="false" header="true"></fb:like-box>
Which is where the fb-root is.
My only thought it something about fb-root not being next to the facebook like button earlier up, and a conflict of two facebook like buttons or something? I;m only calling the facebook js once though, right at the bottom.
Any thoughts help etc much appreciated. It is weird because it it going to my wall, but the button on the site isn't listening!
Thanks a lot
Got this from the request your like button sends to facebook:
App ID does not match domain","full":"The app ID specified
within the \"fb:app_id\" meta tag is
not allowed on this domain. You must
setup the Connect Base Domains for
your app to be a prefix of
http:\/\/www.makemeacocktail.com\/recipe\/6741\/
So, you need to change the base domain for your application in the developers application to makemeacocktail.com. If that is not the problem try removing the fb:app_id open graph tag, or use the fb:admins tag instead. Good luck, hope this helps.

how to use facebook comments plugin into facebook page

We have a Face book page.We add a custom FBML tab.Now we want to add Comment Face book plugin.I tried to add an script what i got from Face book Social Plug in.The code is
<div id="fb-root"></div><script
<src="http://connect.facebook.net/en_US/all.js#appId=178089302222317&amp;xfbml=1"></script><fb:comments numposts="10" width="425"
publish_feed="true"></fb:comments>
After that i put this script to custom FBML page but its not reflecting any thing please suggest to solve this issue.
Thanks in advance.
You should start over and not use FBML but use an iframe instead.
You are trying to create an app on a page tab. To do this take a look at the FB dev site and it shows you how to get started with an iframe based app and then how to get that to work on a page tab.
https://developers.facebook.com/docs/guides/canvas/#tabs
Once you move to iframes you can use all of the social plug-ins and other advanced features like the Graph API.
<fb:comments xid="some_unique_id_doesnt_matter_what" canpost="true" candelete="false" publish_feed="true" numposts="10" returnurl="http://facebook.com/YOURPAGE">
<fb:title>Headline</fb:title>
</fb:comments>
this is what you are looking for.. your code doesnt work in FBML, yours is XFBML
<fb:title>
is optional