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 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?

share|improve this question
Did you end up finding a workaround for this? – jsboulanger Oct 21 '11 at 20:20

closed as too localized by Kev Jun 9 '12 at 15:28

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.