I have the following Multi Friend Selector to invite freinds to my page:
<div id="fb-layer-wrapper">
<fb:serverFbml width="630px">
<script type="text/fbml">
<fb:fbml>
<fb:request-form
action = "http://<?=$_SERVER['HTTP_HOST']?>/invite/<?=$hash?>"
target = "_top"
method = "post"
invite = "true"
type = "myInvite"
content = "<fb:name uid='<?=$facebookId?>' firstnameonly='true' />: My invitation <fb:req-choice url='http://<?=$_SERVER['HTTP_HOST']?>/invited/<?=$hash?>' label='<?__('Join!')?>' />"
>
<fb:multi-friend-selector
showborder = "false"
actiontext = "Invite all friends"
rows = "3"
cols = "4"
exclude_ids = "<?=$fbFriends['excludeFriends']?>"
/>
</fb:request-form>
</fb:fbml>
</script>
</fb:serverFbml>
This is all working perfectly as long as your "Secure browsing (https)"-settings in Facebook are disabled. If the checkbox in the users personal settings is checked and the embedding page (on my server) is called through http I get the loading animation of the Facebook widget only. If I call my page over https it works again.
Is there a workaround to get the widget working no matter if the user has "Secure browsing" enabled or not?