Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我创建了一个使用 facebook API 的 php 页面。该页面在 2 个月前运行良好,所以我没有再次检查。
我昨天继续对页面进行编码,但是我发现处理 facebook 管理页面的页面要求我重新验证。
页面的某些功能可以访问并且运行良好,但该特定页面不能。
我猜它必须从 facebook 更改,但我猜不出是什么。我应该从哪里开始发现问题?
谢谢
我认为您应该将您的 facebook API 调用放在try catch语句中。以便在catch块内您可以将错误消息记录到错误日志中。就像是:
try
catch
try{ $facebook->api("/me"); }catch (Exception $e){ error_log($e->getMessage()); }