2

さまざまなリンクでいいねの数を取得するために、非常に長い間以下のコードを使用してきました。しかし、今突然それが機能しなくなりました。私はコードに変更を加えませんでした。どこで答えを探すべきか、実際に何がうまくいかなかったのか、今ではわかりません。

コードは次のとおりです。

    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 が格納されます。次に何を試すことができますか?

4

1 に答える 1

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*/
于 2013-08-16T10:02:24.493 に答える