0

我已经使用以下代码集集成了 PHP-SDK 后的提要

$attachment =  array(
    'access_token' => $accestoken,
    'message' => "Favorite Restaurant is ".$business['name'].$business['location']['city']."-What is yours? ",
    'name' => $business['name'],
    'link' => $business['personal_url'],
    'description' => "<b>myTaste || real restaurant reviews, share your taste on myTaste</b>",
    'picture'=> "http://mysite.com/images/gui/header/mytaste.gif"
);  
$facebook->api("/".$usid."/feed", "post",$attachment);  

一天一切正常,但今天它显示以下错误代码。

Uncaught OAuthException: (#341) Feed action request limit达到了/hsphere/local/home/mysite.com/include/3rdparty/facebook-php-sdk/src/facebook.php

未捕获的 OAuthException:(#210)用户不可见抛出 /hsphere/local/home/mysite.com/include/3rdparty/facebook-php-sdk/src/facebook.php

4

1 回答 1

2

您的应用程序似乎已达到交互的极限。

  1. 登录脸书
  2. 访问http://www.facebook.com/insights/
  3. 选择您的应用
  4. 点击 API
  5. 查找 API 限制选项卡。

看看你达到了什么极限。

要了解如何解决此问题以及导致此问题的确切原因,您可以在 Facebook 开发者论坛上的这些线程中阅读更多相关信息:

http://forum.developers.facebook.net/viewtopic.php?id=95309 http://forum.developers.facebook.net/viewforum.php?id=24

于 2011-04-27T11:56:36.360 回答