1
我使用笨XML-RPC庫來ping不同的博客,
XML-RPC,在檢測博客時指定一個類別?
$this->xmlrpc->server('bloglines.com/ping', 80);
$this->xmlrpc->method('weblogUpdates.ping');
$request = array('My Blog', 'http://www.myblog.com');
$this->xmlrpc->request($request);
問題:
1 - 我如何可以爲博客類別?
2-如果xml-rpc服務支持webUpdates.extendedping,爲什麼我應該使用它而不是他簡單的.ping方法?
3-我應該ping到新創建的博客文章的網址,或主博客網址(然後該服務將蜘蛛更改整個博客?)
謝謝:)