需要Actionscript API Facebook connect的PublishPost方法示例

需要Actionscript API Facebook connect的PublishPost方法示例,api,actionscript,facebook,Api,Actionscript,Facebook,我与FacebookConnect建立了一个扩展权限,工作起来很有魅力, 但我似乎无法在墙上发布消息 我不断地发现这个错误: 错误代码100:参数无效 我的代码: var message:String = "test facebookconnect"; var publishpost:PublishPost = new PublishPost(message, null, null, null); publishpost.addEventListener(FacebookEvent.COMPL

我与FacebookConnect建立了一个扩展权限,工作起来很有魅力, 但我似乎无法在墙上发布消息

我不断地发现这个错误: 错误代码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结合使用有很大帮助

提前感谢。

找到了我的解决方案