2

我正在使用 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");
    }
}
});
4

1 回答 1

0

Titanium.Facebook已弃用,请参见此处

http://docs.appcelerator.com/titanium/3.0/#!/api/Modules.Facebook

并尝试使用有效的访问令牌访问图形路径

fb.requestWithGraphPath('me/feed?access_token=YOUR_APP_ACCESS_TOKEN' , {message: "your message"}, 'POST', if (e.success) 
{
    alert("Success!  From FB: " + e.result);
} 
else 
{
    if (e.error) 
    {
        alert(e.error);
    } 
    else 
    {
        alert("Unkown result");
    }
}
});
于 2013-08-16T08:40:56.403 回答