我正在使用appcelerator的Titanium工作室开发iPhone应用程序。我的应用程序使用Facebook模块它具有权限读取提要和发布提要并且它正确授权但当我尝试将某些内容发布到用户的提要或阅读提要时,我得到错误“errDomain error 10000”95%的时间,它每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");
}
}
});
答案 0 :(得分: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");
}
}
});