很长一段时间以来,我一直在使用基于 WordPress 的 PHP 函数来检索 Feedburner 订阅者数量,以便能够将订阅者数量显示为文本。
这是功能:
/**
* Fetch Feedburner RSS Feed Subscribers.
*
* @param string $feed The feed to fetch.
* @return int of Feedburner RSS subscribers.
*/
public function get_feedburner_subcribers($feedburner_username){
$xml = wp_remote_get('http://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=' .$feedburner_username);
if(is_wp_error($xml))
return false;
try {
$sxe = @new SimpleXMLElement($xml['body']);
}
catch (Exception $e) {
// SimpleXMLElement::__construct produces an E_WARNING error message for
// each error found in the XML data and throws an exception if errors
// were detected. Catch any exception and return failure (NULL).
return;
}
return self::format(intval($sxe->feed->entry['circulation']));
}
直到最近,当函数不再返回任何值时,一切都运行良好。
如果我直接粘贴 URL http://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=my-feedburner-id
,我会得到一个 Google 错误 404 页面。
谷歌是否再次改变了事情,如果是,有没有其他方法可以检索 Feedburner 计数?
谢谢