fbml

External JS usage in FBML - Cannot access external script

Hi, I am trying to create a small facebook app and associate it to a fan page in a tab. I am trying to include an external javascript file in my page and call a method on a button click event. Below is a part of the code <script language="Javascript" src="http://mysite.com/fb.js"&gt;&lt;/script&gt; <input type="button" value="Click......

Facebook iFrame app - How to use fbml/xfbml

Hi Guys, I'm trying to use xfbml within my facebook app (iframe) but it somehow doesn't show up. I copied this tag into one of the pages... <fb:share-button href="http://apps.facebook.com/example" type="box_count"></fb:share-button> ..but as i said it doesn't show up. Any idea how that works? Thanks in advance! ...

FBML on Profile Page - Any Workaround?

I noticed the following restrictions when I tried to hook my facebook application to a profile page [application tabs and profile boxes]. Apparently theses restrictions are not there for a canvas page. 1) No iFrames supported 2) No external scripts 3) No onLoad events [but a close substitute using setTimeOut works in canvas page but not...

How do i redirect to a GET request from a POST request on GAE

Hello everyone, i am writing an FBML app on facebook hosted in GAE. Facebook will talk to your hosted app only vai POST (im sure this is the cause, but please do correct me if i'm wrong). So im faced with the issue that inside of my POST method, i need to redirect to facebook OAuth authroize URL. But i can only send a GET request. How ca...

facebook application description & logo/image

is it possible to return Facebook Application Description & Logo/Image just like we can return Application Name using <fb:application-name /> ...

How to add facebook insights to my app using facebook api

Hi All, I have developed application in facebook. I want to show the insights for my app in facebook as facebook displaying in this url(http://www.facebook.com/insights/). Where are how to add meta tag in my webpage window.fbAsyncInit = function() { FB.init({appId: 'appid', status: true, cookie: true, xfbml...

facebook FBML,FBJS

I want to use FBML as a canvas and would like to display a rich text editor like fckeditor or other. Can anybody out there help me out on this? e.g. to format text mainly bold,italics. Is it possible? how? I'm eager to learn more from the responder. ...

Using Jquery to load Facebook fb:profile-pic - not working in IE

Hey.... I followed the tips given on Loading Facebook fb:profile via ajax In my app, I am basically loading more comments posted by the user via Jquery and along with each comment showing the user's picture using the fb:profile-pic tag This is a sample of how I'm building the string via Jquery $(document).ready(function() { $(".m...

What does "?ref=ts" mean in a FACEBOOK APP url

When Facebook drives traffic to an app, they often append &ref=whatever to the query string. This is useful for figuring out which integration points are working or not. I've figured out what some of these mean. For example: ref=bookmarks - the user clicked on a bookmark. ref=game_my_recent - the user clicked on the upper portion of th...

Get userdata inside Facebook application-tab?

Hi, i know facebook offers the UserID inside a facebook application-tab after the first "click". But doest anyone have an example (fbjs/fbml) how this work in detail? ...

get fbml comments to automatically show form

I'm writing facebook app in fbml (not in iframe). I added comments with <fb:comments ...> and it appears to work. However, to add a comment, user has to click Add a comment... link to see the textarea and post button. I am wondering is there a way to automatically show the form? I want it to really look like here: developers.facebook...

Integrate Facebook Like button in website... With comments option

Hello, Please see: http://developers.facebook.com/docs/reference/plugins/like I successfully integrated a [Like] button in my website using this link. On the developers website, when I click the [Like] button, a popup appears telling this: You like this. Share it on Facebook with a comment... [ ] [P...

Facebook App: Displaying Users Photos to Other Users ?

Does anyone know if Facebook Permissions will allow an app to display a photo of one app user to another, regardless of privacy settings? I want to save photo id's to a database and then display many different users photos at once, to the user, within the app. I could use fbml but am hoping to use xfbml. Any suggestions would be much...

Problem prompting user for extended permissions using showPermissionDialog in FB page tab

I have an FBML app that will use the tab as a promo tab before the full app goes live. The purpose of the promo tab is to allow users to opt in to email notifications (using the FB API sendNotifications call), so I need to prompt them to allow the app and grant extended permissions on that promo tab. The tab code is: <?php require_once...

How to show modal outside of iFrame for FBML

Hi all I am developing an application where I need to use facebook inviter its working fine now except the modal windows are shown within the iFrame so only a partial segment of the window is visible and looking odd. Here is how it is looking : image-link ...

Getting FBML Error unknown tag "fb:like" error with Facebook app

I've been looking at this for ages now and I cant find anything on the net that provides a solution. When trying to use the tag... ...this is embedded on a tab canvas. The 'Like' button appears when using the app locally, however, it doesn't appear when used on the facebook site. I get this error:- FBML Error (line 264): unknown t...

Where did the code that made it so you have to "fan" facebook pages to see content come from?

Hey there. I have noticed a general trend in pages on facebook with a tab that requires users to "fan" a page to see it. I know these people aren't bright, but was wondering where exactly did this code (not tactic - for the sake of not having this question deleted) originate? I would really love to know. Thanks. ...

Can I count facebook fan like button click count on my site?

Hi, I add fb:fan control with facebook on my site. And it working properly. Can I count like button click in fb:fan control on my site? I tried following code with jquery but it doesnt work. Thanks $(function(){ $(".like_button_no_like").bind('click',function() { countClick(); }); }); ...

Facebook multi-friend-selector + new javascript API = BROKEN ?

I am using the fb:serverfbml tag to render a multi-friend-selector inside an IFrame. I am using the new javascript API. I have been trying ALL DAY to get it working. When I click on the underlines 'selected' link (to filter by the selected friends) the whole page refreshes and the selected friends disappear. Does the multi-friend-sele...

How to authenticate multiple entry points in a facebook app?

I am using an IFrame application with XFBML and the new Javascript API. I'd like to have a facebook application with multiple entry points. These will most likely represent different links coming from a fan page tab. I can do this quite easily if the pages don't require authentication - for instance I can create several pages under the...