我的Facebook应用程序突然停止发布

时间:2010-12-29 04:58:50

标签: facebook facebook-graph-api

我的应用程序是基于iframe的画布。它工作正常,但从昨天起它已停止流发布。我无法弄清楚为什么?我正在查看我的应用程序的代码,但我认为我没有更改代码中的任何内容。或者我可能已经更改了它,但发布代码完好无损,其余应用程序运行正常。此外,我还没有收到来自facebook的任何邮件说他们已经阻止了我的发布权限(没有那样......没有邮件)。

以下是发布的代码

 var publish = {
         method: 'stream.publish',
            name: "Check out your friend's underwear",
         link: 'http://apps.facebook.com/underwearcheck/',
         picture: 'http://dhruvlab.com/underwearcheck/appli/pic.jpeg',
         caption: 'Its time to know the inner secret of your friend. Watch what he/she wears inside.',
         message: "Hey! I checked out one of my friend's underwear. Its really funny!. Aren't you curious?",
         description: "NEW YEAR SPECIAL"
   };

   FB.api('/me/feed', 'POST', publish, function(response) {  
        document.getElementById('confirmMsg').innerHTML = 
          'A post had just been published into the stream on your wall.';

   });

这是应用程序网址:http://apps.facebook.com/underwearcheck。有人可以弄清楚为什么会这样吗?

1 个答案:

答案 0 :(得分:0)

如果您过于频繁地发布到用户的流,Facebook将在一段时间内忽略其他发布请求。如果您在一段时间内根据您拥有的用户总数开始发送过多的总请求,它也会忽略发布请求。我在测试时碰到了两个块。