我想问一个相关的问题。我说亲戚,因为这对我来说很难,对你来说很容易。
我已尝试在我的网站上制作一个实时的FB Feed,结果如下:
当我进入时;
https://graph.facebook.com/{pageid}/feed?access_token={appid}|{appsecret}
我收到了我要找的结果。但是,它听起来很容易,但我不知道如何将该数组转换为PHP变量。
我真的需要你的帮助。
提前谢谢。
答案 0 :(得分:1)
在php中,您可以使用file_get_contents()
函数,只需:
$results = file_get_contents('https://graph.facebook.com/{pageid}/feed?access_token={appid}|{appsecret}');
您可能希望通过$data = json_decode($results);