我正在使用 appcelerator 的 Titanium 工作室开发 iPhone 应用程序。我的应用程序使用 Facebook 模块它具有读取提要和发布提要的权限,并且它正确授权但是当我尝试将某些内容发布到用户的提要或阅读提要时,我在 95% 的情况下收到错误“errDomain 错误 10000”,它每 2 天正常工作一次,所以我知道我的请求是有效的。我找不到任何解决此问题的方法,我已尝试注销并重新登录它不起作用:(所以你能帮帮我吗?
这是我的代码:
Titanium.Facebook.requestWithGraphPath('me/feed', {message: "Trying out FB Graph API and it's NOT fun at all!"}, "POST", function(e) {
if (e.success)
{
alert("Success! From FB: " + e.result);
}
else
{
if (e.error)
{
alert(e.error);
}
else
{
alert("Unkown result");
}
}
});