我试图从Fb API调用
中检索“类型”(例如应用程序)这是我目前的代码:
FB.api('/' + app, function(response) {
$("#appverified").html("<img src=" + response.logo_url + " valign=middle> " + response.name);
});
response.logo_url和response.name工作正常,但我也试图检索response.type,它只是返回“未定义”
当我查看API资源管理器时,“类型”显示为其中一个选项,但它并未显示在我的实际结果中。
任何人都可以告诉我需要做什么来检索“类型”变量。