是否可以检索给定日期的instagram业务页面的关注者数量?
在api内部,有一个字段$(function() {
// whenever we hover over a menu item that has a submenu
$('li.parent').on('mouseover', function() {
var $menuItem = $(this),
$submenuWrapper = $('> .wrapper', $menuItem);
// grab the menu item's position relative to its positioned parent
var menuItemPos = $menuItem.position();
// place the submenu in the correct position relevant to the menu item
$submenuWrapper.css({
top: menuItemPos.top,
left: menuItemPos.left + Math.round($menuItem.outerWidth() * 0.75)
});
});
});
,它返回指定日期范围内每天的新关注者总数。但是我想要总数,而不是新总数。
如果此信息不存在,如何计算?