我想通过 PHP 从一页解析一个最新的提要。
正如我所读到的,FB 拒绝了 curl/fopen 和另一种解析一些数据的方法。而不是这个,我应该使用 FB API,好的,我会使用 PHP SDK。
$info = json_decode(file_get_contents('https://graph.facebook.com/cocacola/feed?access_token={some_access_token}'));
很好,它从可口可乐页面返回给我的提要,但它需要有效的访问令牌。要获得访问令牌,用户应该至少授权一次我的应用程序,对吧?
Reuire autoorize from user is not the best idea in this website,所以也许有人知道获得一个(最新)提要的更好方法吗?