尝试使用CodeIgniter访问facebook API时出现异常

时间:2011-09-04 13:53:18

标签: php codeigniter facebook-graph-api

我正在尝试使用带有codeigniter的Facebook API。我正在尝试获取有关用户的一些基本信息,如

$this->facebook->api('/me?fields=id,name,link,email,user_hometown,user_education_history,user_birthday&perms=publish_stream,create_event');

我像

一样异常
Exception: Unknown fields: user_hometown,user_education_history,user_birthday 

但是文件说这很好。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

“hometown”,“education”和“birthday”不需要“user_”前缀。你在“教育”上也不需要“_history”。请在您的API调用中尝试此操作:

'me?fields=id,name,link,email,hometown,education,birthday'