我正在尝试删除手动在Facebook上发布的状态。
我的应用程序正在使用范围:
email, user_about_me, user_birthday, user_hometown, user_website, read_stream, export_stream, publish_actions
当我尝试删除状态时(使用PHP SDK和Graph API),我得到:
OAuthException: An unexpected error has occurred. Please retry your request later.
我的PHP代码是:
try {
$facebook->api("/STATUS_ID","DELETE");
} catch(FacebookApiException $e) {
echo $e;
}
我做错了什么?
我正在将facebook与wordpress结合使用,如果那是相关的
感谢您的回答!