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.

Any way to join FBML and Graph API to post HTML to a FB page?
FB Iframe's based solutions are welcome too.


EDIT 24 hrs after: After play with the Page Tab functionality I have found that it is the best way to embed custom content (HTML/CSS/javascript) inside FB pages.

Basically are iframes. In the Page tab settings you must enter the URL to embed. That's all! You can use Signed Request to get the id's page and something called app_data. With that you can dynamically manage your embedded content!!!

Thanks to DMCS to guide me to it.

share|improve this question

2 Answers

up vote 2 down vote accepted

Yes, while the FBML is being deprecated, there is another way to accomplish posting something to a page.

You can see an example here of what is called a page tab application. It is an app specifically designed to be used on a Facebook page. It becomes a tab (can even be set to the default of what a visitor sees).

Here's an example: http://www.facebook.com/GoDaddy?sk=app_233280480043288

You can see that the content is HTML and you have full control over that HTML since it lives on your server. This also demonstrates how a fan-gate operates.

share|improve this answer
Looks good but where is the Graph API related stuff? THX! – NomikOS Jan 13 '12 at 19:23
Where is explained how was embedded that picture using Graph API? THX.- – NomikOS Jan 13 '12 at 20:06
1  
That picture as well as the other HTML is served up via an iFrame. You specify the iFrame url in your app settings. See: developers.facebook.com/docs/appsonfacebook/pagetabs – DMCS Jan 13 '12 at 20:13
+1 I see something very interesting in Integrating with Facebook APIs at the bottom of the page you show about app_data!. I'll check it deeper and return here to accept your answer if all goes OK. THX!! – NomikOS Jan 13 '12 at 20:53

https://developers.facebook.com/docs/reference/fbml/

We are deprecating FBML. On Jan 1, 2012: FBML will no longer be supported on Platform. June 1, 2012: FBML apps will no longer work. All FBML endpoints are removed. If you are building a new application on Facebook.com, please implement your application using HTML, JavaScript and CSS. You can use our JavaScript SDK and Social Plugins to embedded many of the same social features available in FBML.

share|improve this answer
+1 I know it. But we have time until June to wait for new solutions. So in the meantime FBML is acceptable. Any tip about using Graph API with FBML? THX.- – NomikOS Jan 13 '12 at 19:01
There won't be any "new solutions" in June. They've already replaced it with iframe tabs. – ceejayoz Jan 13 '12 at 19:08
With new solutions I meant an easy way to post HTML into FB via API. Any tip about using Graph API with FBML or iframes? That is my question. – NomikOS Jan 13 '12 at 19:21
Post into FB? Post what? Wall posts? In most situations I'd imagine Facebook doesn't want you posting HTML. – ceejayoz Jan 13 '12 at 19:24
FBML is a markup language that looks as HTML, right?. iframes allow embed HTML into FB, right? that is what I mean. You are no responding to my question. This response should have been a comment. – NomikOS Jan 13 '12 at 20:03
show 6 more comments

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.