I have used this code below to get the followers of a particular user. But there are times that some tumblr blogs are not showing from the response.
$oauth = new OAuth($conskey,$conssec);
$oauth->fetch("http://api.tumblr.com/v2/user/following", array('offset'=>0) ,OAUTH_HTTP_METHOD_GET);
$following_list = json_decode($oauth->getLastResponse());
I am not sure if those blogs have done something to their settings that makes them invisible from the response of the API request.
Anyone experience this kind of problem with Tumblr API requests? How do I go around with this problem for me to view the complete list of followers?
Thank you in advance.
