我已经使用了基于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页。
Google是否再次更改了事情?
谢谢
不再可用feedBurner API。它于2012年10月20日关闭(这里有更多详细信息,包括关闭日期。)