Facebook Yii Framework kullanarak XFBML çağrısı başarısız

0 Cevap php

Ben diğer IFRAME Facebook uygulamaları bu aynı çağrıyı kullanmış, ama bu çıkışı açısından bana hiçbir şey verir. Ben Yii üzerinde çalışıyor ve hiçbir şey alıyorum.

<script type="text/javascript">

  window.onload = function() {

    FB_RequireFeatures(["XFBML"], function() {

      FB.init('xxxxxx', 'xd_receiver.htm');

      FB.XFBML.Host.get_areElementsReady().waitUnitlReady(function()
        {
          document.getElementById("container").style.visibility = "visible";
        });

    });

  };

</script>

<script type="text/javascript">

function publish() {
 FB_RequireFeatures(["Connect"], function() {
   FB.init('xxxxxx', 'xd_receiver.htm');
   FB.ensureInit(function() {
     FB.Connect.streamPublish();
   });
 });
}

</script>

<fb:serverFbml style="width: 755px;">
 <script type="text/fbml">
  <fb:fbml>
   <fb:request-form
      action="http://apps.facebook.com/ixxxx"
      method="POST"
      invite="true"
      type="rrrrr"
      content="rrrrr <?php echo htmlentities("<fb:req-choice url=\"http://apps.facebook.com/XXXX\" label=\"Authorize My Application\"") ?>" > 
<fb:multi-friend-selector showborder="false" actiontext="Invite your friends to use SuperThief."> 

   </fb:request-form>
  </fb:fbml>
 </script>
</fb:serverFbml>

0 Cevap