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 have my app used as a tab on a page implemented using iframe. I'm iterating over some links and for each link I'd like to add a Like button, but none of the generated buttons work because of some restrictions.

The closest I've got, with their APIs is FBJS's Facebook.streamPublish, but that's not exactly equal to Like.

Should I switch my application to FBML so that the XFBML Like button would work, or would it?

I'm really frustrated with Facebook's developer documentation, especially for the tabs. They seem to be forced to use the soon to be deprecated APIs, since I couldn't get the new Javascript SDK working at all.

share|improve this question
What do you mean by some restrictions? – ifaour Jan 26 '11 at 10:12
Restricting the tags allowed inside the application. For instance when trying to include the iframe Like button in my application it'll complain about HTML error while rendering tag "iframe": iframes forbidden by flavor TabFB. Or with the fb:like tag it'll say FBML Error (line 71): unknown tag "fb:like" and Cannot allow external script. – hleinone Jan 26 '11 at 13:28

1 Answer

up vote 1 down vote accepted

The tag you want is <fb:like-box>1. Are you trying to accomplish this in a tab or a canvas page? If it's a tab, know that FB goes out of their way to prevent developers from putting Like buttons on Page tabs, so you should reconsider that approach. Know that the iframe version of <fb:like-box> does not work in the tab, since you cannot use iframes there right now. (There is a scheduled Q1 migration of tabs toward iframes)

If you're on a canvas page, the Like box should just work. Make sure that the Facebook SDK is (a) loaded and (b) initialized.

share|improve this answer
any idea why facebook prevents developers from putting like buttons on deeper pages inside a tabbed application? – Jorre Jun 22 '11 at 19:52

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.