Facebook Application Request limit reached

前端 未结 2 2037
天命终不由人
天命终不由人 2020-12-28 18:33

I am getting an FBerror \"This operation can\'t be completed: Application request limit reached\". Does anybody know why is it so? How to check the limit? How to increase th

2条回答
  •  礼貌的吻别
    2020-12-28 18:51

    try this with your php code:

    50 continuous FQL calls. After a pause of 10 seconds (sleep (10)) You repeat.

    if($nr%50==0)
    {
       sleep(10);
       echo "\n\n---Bloque #".++$numBloque."---\n\n";
     }
    

提交回复
热议问题