我通过Facebook连接建立了扩展权限,就像一个魅力, 但我似乎无法在我的墙上发布消息。
我一直收到这个错误: 错误代码100:参数无效
我的代码:
var message:String = "test facebookconnect";
var publishpost:PublishPost = new PublishPost(message, null, null, null);
publishpost.addEventListener(FacebookEvent.COMPLETE, function(e:FacebookEvent) {
MonsterDebugger.trace(this, e);
});
publishpost.addEventListener(FacebookEvent.ERROR, function(e:FacebookEvent) {
MonsterDebugger.trace(this, e);
});
publishpost.addEventListener(FacebookEvent.CONNECT, function(e:FacebookEvent) {
MonsterDebugger.trace(this, e);
});
fldFacebook.post(publishpost);
任何明确的示例/教程都会对如何将此publishpost与actionscript API一起使用有很大帮助
提前感谢。
答案 0 :(得分:1)