我使用file_get_contents()
在WordPress中获得Facebook帖子:
$data = file_get_contents("https://graph.facebook.com/$page_name/posts?fields=full_picture,picture,name,description,story,id,source,link,message,permalink_url,attachments,type&limit=$limit&access_token=$access_token");
$data = json_decode($data, true);
如何在不使用Facebook SDK的情况下获取帖子分页?