用于让Facebook喜欢的PHP代码不再适用

时间:2013-08-16 09:57:00

标签: php mysql facebook facebook-graph-api

我一直在使用以下代码,因为很长一段时间才能获得各种链接上的喜欢数量。但现在突然它停止了工作。我没有对代码进行任何更改。我现在不知道在哪里寻找答案或究竟出了什么问题。这是'代码:

    mysql_real_escape_string($web[$i]);
    $site="http://graph.facebook.com/?ids=".$web[$i]."";
    $graph= file_get_contents($site);
    $json_string=$graph; 
    $array  = json_decode($json_string, true);
    $var[$i] =($array[$web[$i]]['shares']);

$ web数组存储所有URL。任何帮助?

1 个答案:

答案 0 :(得分:2)

他们已经删除了开放的Rest API,为此,您需要在应用程序中实现Oauth2.0。

The steps involved are :

1) Register your app
You will receive a CustomerKey and a Secret Code

2) Use both the Key and Code to receive an accessToken

3) Uses the same url which you are using, along with a new parameter which is accessToken=/*the one you received*/