【问题标题】:How to show the Instagram followers counter in my WordPress website?如何在我的 WordPress 网站中显示 Instagram 关注者计数器?
【发布时间】:2016-06-13 05:09:50
【问题描述】:

如何在我的 WordPress 网站中显示 Instagram 关注者计数器,请参见屏幕截图。 Screenshots Image

【问题讨论】:

    标签: wordpress instagram counter


    【解决方案1】:

    你能检查下面的代码吗?

    $api_key = 'API_KEY';
    $user_id = 'UID';
    $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'];
    

    【讨论】:

    • 感谢我认为 API_KEY 替换为客户端 ID 和 UID 替换为客户端密码对吗?
    • 请问我的回答是否正确?所以有人对此有帮助
    猜你喜欢
    • 2021-11-29
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-11-12
    • 1970-01-01
    • 2017-07-28
    相关资源
    最近更新 更多