0

我正在使用facebook-actionscript-api开发一个小型移动项目。

一切正常我基本上使用示例文件中的代码片段。但是我没有收到来自传递给回调函数的失败对象的反馈消息或描述。

private function handlePost ( result : Object, fail : Object ) : void {
    if(result) {
        trace("POSTED");
    } else {
        trace( fail ); // returns [object Object]
        trace( fail[0] ); // returns undefined
        trace( JSON.encode(fail) ); // returns nothing ''
    }
}

如何调试错误?这里有错误吗?我正在使用最新版本(1.8.1)。

4

1 回答 1

0
private function handlePost ( result : Object, fail : Object ) : void {
    if(result) {
        trace("POSTED");
    } else {        
        trace("Login Failed");  
        trace('code: '+fail.error.code); 
        trace('message: '+fail.error.message);
        trace('type: '+fail.error.type); 
    }
}
于 2013-08-20T13:45:18.817 回答