Instagram粉丝没有出现?

时间:2017-05-12 13:30:12

标签: php laravel-5 instagram-api

我正在使用此代码来吸引粉丝数!

<?php
    $api_key = '------';
    $user_id = '------';
    $data = @file_get_contents("https://api.instagram.com/v1/users/$user_id/?client_id=$api_key");
    $data = json_decode($data, true);
    echo '<pre/>';
    print_r($data);
    echo $data['data']['counts']['followed_by'];
    ?>

1 个答案:

答案 0 :(得分:2)

它失败了,因为您无法使用客户端ID访问API的该功能。

您需要通过将用户发送到授权网址来获得Access Token。请在Instagram Docs

中了解相关信息

之后,您使用之前的/usersAccess Token发出请求。