关于pubhubsubbub求教程,google的
最近发的一些第三方的blog,感觉收录都很慢。看到坛里有人讲到pubhubsubbub,说这个收录快。所以求教一下,看看有没有实操过的,分享一下。T币大大地有。
对gg来说和ping差不多,好的第三方基本都已经pubhubsubbub了,没收录估计是质量不行
不会用pubhubsubbub。有实践的来点介绍吧
yiyunet 发表于 2013-11-22 09:24 static/image/common/back.gif
不会用pubhubsubbub。有实践的来点介绍吧
function http_post($url, $post_string) {
$options = array(CURLOPT_URL => $url,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $post_string,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_USERAGENT => "PubSubHubbub-Publisher-PHP/1.0");
$ch = curl_init();
curl_setopt_array($ch, $options);
$response = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);
// all good
if ($info['http_code'] == 204)
return true;
return false;
}
function Publisher($topic_url){
$hub_urls=array('http://pubsubhubbub.appspot.com/','http://pubsubhubbub.superfeedr.com/','http://superfeedr.com/hubbub');
$post_string = "hub.mode=publish";
$post_string .= "&hub.url=".urlencode($topic_url);
foreach ($hub_urls as $hub_url) {
http_post($hub_url,$post_string);
}
}以前从wp插件中扣的代码,3个pub源
我们发布的外链可以通过pubsubhubbub提交吗?
这个真够绕口的。
页:
[1]