<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="http://www.majordojo.com/projects/FeedManager/atom.xsl" type="text/xsl" media="screen"?>
<feed xmlns="http://www.w3.org/2005/Atom" 
      xmlns:thr="http://purl.org/syndication/thread/1.0">
  <link rel="alternate" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html" />
  <link rel="self" type="application/atom+xml" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html" />
  <id>tag:www.thinkjam.org,2009:/zoptuno//2/tag:www.thinkjam.org,2006:/zoptuno//2.376-</id>
  <updated>2009-09-21T03:11:02Z</updated>
  <title>Comments for Google Blog Search Pinging Service的使用</title>
  <subtitle>My think. My dream.</subtitle>
  <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.31-zh-cn</generator>
  <entry>
    <id>tag:www.thinkjam.org,2006:/zoptuno//2.376</id>
    <link rel="alternate" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.thinkjam.org/loveblog/batom.cgi/weblog/blog_id=2/entry_id=376" title="Google Blog Search Pinging Service的使用" />
    <published>2006-10-08T14:10:13Z</published>
    <updated>2008-01-27T06:57:37Z</updated>
    <title>Google Blog Search Pinging Service的使用</title>
    <summary> 几天没关注网络上的新动态，Google Blog Search的Pinging...</summary>
    <author>
      <name>平生一笑</name>
      <uri>http://www.thinkjam.org/zoptuno</uri>
    </author>
    
    <category term="MovableType" />
    
    <category term="互联网" />
    
    <content type="html" xml:lang="en" xml:base="http://www.thinkjam.org/zoptuno/">
      <![CDATA[<p><a href="http://www.google.com/help/blogsearch/about_pinging.html" target="_blank"><img src="http://blogsearch.google.com/blogsearch/intl/en_ALL/images/g_bsrch_logo.gif" alt="Google Blog Search" /><br />
</a></p>

<p id="fp">几天没关注网络上的新动态，<a href="http://blogsearch.google.com/" target="_blank">Google Blog Search</a>的<a href="http://www.google.com/help/blogsearch/about_pinging.html" target="_blank">Pinging Service</a>就推出了。相较之前依靠<a href="http://weblogs.com/" target="_blank">Weblogs</a>的Pinging Service收集Blog的最新信息，Google Blog Search自身的Ping服务无疑让这种收集更加直接与快速，其价值也更加明显的体现出来（我期待此服务很久了，因为早在一个月前，我就将<a href="http://www.postshow.net" target="_blank">Postshow</a>的搜索换成了Google Blog Search，那时候Google Blog Search的Blog信息索引速度已经很让人满意了）。</p>

<p>使用Google Blog Search Pinging Service，有以下两种方法：</p>]]>
      <![CDATA[<ol><li><strong>使用XML-RPC</strong><br />发表日记时，向地址http://blogsearch.google.com/ping/RPC2发出一个ping通告。对于使用Movable Type的朋友来说，在Blog“设置→新增日记默认设置→公共/远程接口→Blog 更新时通知下列站点→其它”中输入“http://blogsearch.google.com/ping/RPC2”，然后更新设置。<br /><a href="http://www.thinkjam.org/zoptuno/archives/images/2006/10/movalbetype-ping-service.png"><img alt="movalbetype pinging service 设置" src="http://www.thinkjam.org/zoptuno/archives/images/2006/10/movalbetype-ping-service-thumb.png" width="400" height="142" /></a><br /></li><li><strong>使用REST通知</strong><br />在<a href="http://blogsearch.google.com/ping" target="_blank">http://blogsearch.google.com/ping</a>直接提交你Blog的网址或RSS Feed，或者用形如以下的地址：<br /><blockquote>http://blogsearch.google.com/ping?name=Just平生一笑&url=http%3A%2F%2Fwww.thinkjam.org%2Fzoptuno/&changesURL=http%3A%2F%2Fwww.thinkjam.org%2Fzoptuno%2Fatom.xml</blockquote><br />其中name、url、changesURL参数分别表示Blog名、Blog网址、Blog RSS Feed的地址。</li></ol>向Google Blog Search发送Ping后，Google会在<a href="http://blogsearch.google.com/changes.xml" target="_blank">http://blogsearch.google.com/changes.xml</a>显示已经发送成功的Blog列表。

<p>有关<a href="http://www.google.com/help/blogsearch/about_pinging.html" target="_blank">Google Blog Search Pinging Service</a>的详细信息，还是参照其<a href="http://www.google.com/help/blogsearch/about_pinging.html" target="_blank">官方网站的帮助</a>来的详细。我还是说一下如何为自己的Blog添加Blog Search搜索框吧！</p>

<p>很简单，把下面的代码拷贝到你的Blog模板中，把其中的thinkjam.org/zoptuno/换成你自己的Blog地址就行了。</p>

<blockquote>&lt;script language="javascript" type="text/javascript"&gt;<br />
	function searchblog() {<br />
		var qe=encodeURIComponent(document.gs.key.value);<br />
		window.open("http://blogsearch.google.com/blogsearch?hl=en&q="+qe+"+blogurl%3Athinkjam.org/zoptuno/&btnG=Search+Blogs");<br />
		return false;<br />
	}<br />
&lt;/script&gt;<br />
&lt;div id="searchform"&gt;<br />
	&lt;form name="gs"	onsubmit="return(searchblog())"&gt;<br />
		&lt;input class="form-text" type="text" name="key" size="15" /&gt;<br />
		&lt;input class="form-submit" type="submit" value="Search" /&gt;<br />
	&lt;/form&gt;<br />
&lt;/div&gt;</blockquote>

<p>最终效果如下：<br />
<script language="javascript" type="text/javascript">	function searchblog() {	var qe=encodeURIComponent(document.gs.key.value);		window.open("http://blogsearch.google.com/blogsearch?hl=en&q="+qe+"+blogurl%3Athinkjam.org/zoptuno/&btnG=Search+Blogs");		return false;	}</script><div id="searchform"><form name="gs"	onsubmit="return(searchblog())">		<input class="form-text" type="text" name="key" size="15" />		<input class="form-submit" type="submit" value="Search" /></form></div></p>]]>
    </content>
  </entry>

  <entry>
    <id>tag:www.thinkjam.org,2006:/zoptuno//2.376-comment:2319</id>
    <thr:in-reply-to ref="tag:www.thinkjam.org,2006:/zoptuno//2.376" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html"/>
    <link rel="alternate" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html#c2319" />
    <title>Comment from Fenng on 2006-10-09</title>
    <author>
        <name>Fenng</name>
<!--        <uri>http://www.dbanotes.net</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.dbanotes.net">
	<![CDATA[<p>看来Google已经不太满足其他几个Blog Ping服务器的数据同步了</p>]]>
    </content>
    <published>2006-10-09T02:24:42Z</published>
    <updated>2006-10-09T02:24:42Z</updated>
  </entry>

  <entry>
    <id>tag:www.thinkjam.org,2006:/zoptuno//2.376-comment:2320</id>
    <thr:in-reply-to ref="tag:www.thinkjam.org,2006:/zoptuno//2.376" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html"/>
    <link rel="alternate" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html#c2320" />
    <title>Comment from Sucirst on 2006-10-10</title>
    <author>
        <name>Sucirst</name>
<!--         -->
    </author>
    <content type="html" xml:lang="en" xml:base="">
	<![CDATA[<p>我的感觉  <br />
之前我被收录的space的rss没有主动ping 但是发布完之后马上就能搜索出来  貌似space会主动ping？ 0.0</p>]]>
    </content>
    <published>2006-10-10T08:24:28Z</published>
    <updated>2006-10-10T08:24:28Z</updated>
  </entry>

  <entry>
    <id>tag:www.thinkjam.org,2006:/zoptuno//2.376-comment:2321</id>
    <thr:in-reply-to ref="tag:www.thinkjam.org,2006:/zoptuno//2.376" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html"/>
    <link rel="alternate" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html#c2321" />
    <title>Comment from 平生一笑 on 2006-10-10</title>
    <author>
        <name>平生一笑</name>
<!--        <uri>http://www.thinkjam.org/zoptuno/</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.thinkjam.org/zoptuno/">
	<![CDATA[<p>可能是Google对各大BSP平台比较关注吧，直接读取其RSS文件，呵呵。</p>]]>
    </content>
    <published>2006-10-10T08:33:19Z</published>
    <updated>2006-10-10T08:33:19Z</updated>
  </entry>

  <entry>
    <id>tag:www.thinkjam.org,2006:/zoptuno//2.376-comment:2322</id>
    <thr:in-reply-to ref="tag:www.thinkjam.org,2006:/zoptuno//2.376" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html"/>
    <link rel="alternate" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html#c2322" />
    <title>Comment from 海岸 on 2006-11-09</title>
    <author>
        <name>海岸</name>
<!--        <uri>http://www.baidusky.com</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.baidusky.com">
	<![CDATA[<p>搜索的快</p>]]>
    </content>
    <published>2006-11-09T12:40:40Z</published>
    <updated>2006-11-09T12:40:40Z</updated>
  </entry>

  <entry>
    <id>tag:www.thinkjam.org,2006:/zoptuno//2.376-comment:2323</id>
    <thr:in-reply-to ref="tag:www.thinkjam.org,2006:/zoptuno//2.376" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html"/>
    <link rel="alternate" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html#c2323" />
    <title>Comment from 斌强 on 2006-12-28</title>
    <author>
        <name>斌强</name>
<!--        <uri>http://binqiangliu-cn.bloggerspaces.com</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://binqiangliu-cn.bloggerspaces.com">
	<![CDATA[<p>您这里提供的用于建立blog search搜索框的代码不能用呢，我将我的博克地址http://binqiangliu.bloggerspaces.com在您的博克搜索框试了，也没有用，在我得一个测试博克中也是不能用。您能看一下是为什么，然后email给我答案吗？谢谢！</p>

<p>祝好！</p>]]>
    </content>
    <published>2006-12-28T10:20:10Z</published>
    <updated>2006-12-28T10:20:10Z</updated>
  </entry>

  <entry>
    <id>tag:www.thinkjam.org,2006:/zoptuno//2.376-comment:2324</id>
    <thr:in-reply-to ref="tag:www.thinkjam.org,2006:/zoptuno//2.376" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html"/>
    <link rel="alternate" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html#c2324" />
    <title>Comment from sonet.all on 2007-05-02</title>
    <author>
        <name>sonet.all</name>
<!--        <uri>http://rd-program.blogspot.com</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://rd-program.blogspot.com">
	<![CDATA[<p><a href="http://rd-program.blogspot.com" rel="nofollow"><a href="http://rd-program.blogspot.com" rel="nofollow"><a href="http://rd-program.blogspot.com" rel="nofollow">http://rd-program.blogspot.com</a></a></a> 右側也有一個類似的服務,他集合了20個ping service的服務,一次就可以送出資料到20多個ping service</p>]]>
    </content>
    <published>2007-05-02T04:54:37Z</published>
    <updated>2007-05-02T04:54:37Z</updated>
  </entry>

  <entry>
    <id>tag:www.thinkjam.org,2006:/zoptuno//2.376-comment:3835</id>
    <thr:in-reply-to ref="tag:www.thinkjam.org,2006:/zoptuno//2.376" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html"/>
    <link rel="alternate" type="text/html" href="http://www.thinkjam.org/zoptuno/archives/2006/10/google-blog-search-pinging-service.html#c3835" />
    <title>Comment from usaber on 2008-08-13</title>
    <author>
        <name>usaber</name>
<!--        <uri>http://www.usaber.com</uri> -->
    </author>
    <content type="html" xml:lang="en" xml:base="http://www.usaber.com">
	<![CDATA[<p>用你的方法被收录了<br />
感谢</p>]]>
    </content>
    <published>2008-08-12T16:43:45Z</published>
    <updated>2008-08-12T16:43:45Z</updated>
  </entry>

</feed>
