我在http://apps.facebook.com/nitz_dola_apps/有一个facebook应用程序。是的,这是我的第一个Facebook应用程序。现在我的问题是获取我的朋友列表,我需要点击链接http://www.graph.facebook.com/me/friends?access_toke=.Although我收到回复,我将如何查询这些数据?有没有什么方法可以在不点击链接的情况下获取数据?
答案 0 :(得分:2)
使用file_get_contents方法。喜欢这个
$contents = json_decode(file_get_contents(http://www.graph.facebook.com/me/friends?access_toke=xyz));
$ contents包含您的朋友姓名和ID的数组。