好的,我问这个问题,因为我只能找到PHP版本的示例和答案。我需要Flash版本。我正在尝试获取我的朋友信息,但我认为我做错了,因为如果我追踪它,它会给我[对象对象]或未定义。
我做了Facebook.api(“我/朋友”,handleApiGet);
private function handleGetApi(success:Object, fail:Object):void
{
if (success)
{
ExternalInterface.call("doAlert", success);
}
else
{
trace("nope");
}
}
ExternalInterface.call(“doAlert”,success)返回我[object Object],[object Object]。我也做了ExternalInterface.call(“doAlert”,success.name),它返回我undefined。
任何帮助将不胜感激!
答案 0 :(得分:0)
我还没有使用过flash facebook bindigs,但是根据你的输出和图形api,结果将是一个包含你朋友列表的数组。检查手册:
https://graph.facebook.com/me/friends?access_token=YOURACCESSTOKEN&format=json
根据你的第一个结果([object Object],[object Object]),你收到了两个对象,所以success [0] .name和success [1] .name(或类似的东西)应该返回它们的名字。< / p>