Twitter API to get tweet and re-tweets count in ph

2019-04-02 08:30发布

Is there any API for getting twitter tweets and retweets count. Please help me

Thanks in advance.

标签: twitter
1条回答
霸刀☆藐视天下
2楼-- · 2019-04-02 08:38
function getTweetCount($url)
{
    $url = urlencode($url);
    $twitterEndpoint = "http://urls.api.twitter.com/1/urls/count.json?url=%s";
    $fileData = file_get_contents(sprintf($twitterEndpoint, $url));
    $json = json_decode($fileData, true);
    unset($fileData); // free memory
    //print_r($json);
    return $json['count'];
}
查看更多
登录 后发表回答