您好,登錄后才能下訂單哦!
百度實時推送api接口的應用案例,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
百度站長平臺 http://zhanzhang.baidu.com/
打開百度站長平臺, 點開實時推送的添加新數(shù)據(jù)接口獲得帶token的api推送地址:
http://ping.baidu.com/sitemap?site=www.yourdomain.com&resource_name=sitemap&access_token=xxxxxxx
分享一段網(wǎng)友寫的php實時推送代碼:
php 實時推送新發(fā)布的文章
socketopen方式推送sitemap
復制代碼 代碼如下:
function sitemap_ping_baidu($urls){
$baidu_ping_url = 'ping.baidu.com';
$get = '/sitemap?site=www.yourdomain.com&resource_name=sitemap&access_token=xxxxxxx';
$port=80;
if ( ( $io = fsockopen( $baidu_ping_url, $port, $errno, $errstr, 50 ) ) !== false ) {
$send = "POST $get HTTP/1.1"."rn";
$send .= 'Accept: */*'."rn";
$send .= 'Cache-Control: no-cache'."rn";
$send .= 'Host: '.$baidu_ping_url."rn";
$send .= 'Pragma: no-cache'."rn";
//$send .= "Referer: http://".$url.$get."rn";
//$send .= 'User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)'."rn";
$xml = '<?xml version="1.0" encoding="UTF-8"?><urlset>';
foreach($urls as $url){
$xml .= '<url>';
$xml .= '<loc><![CDATA['.$url.']]></loc>';
$xml .= '<lastmod>'.date('Y-m-d').'</lastmod>';
$xml .= '<changefreq>monthly</changefreq>';
$xml .= '<priority>0.8</priority>';
$xml .= '</url>';
}
$xml .= '</urlset>';
$send .= 'Content-Length:'.strlen($xml)."rn";
$send .= "Connection: Closernrn";
$send .= $xml."rn";
fputs ( $io, $send );
$return = '';
while ( ! feof ( $io ) )
{
$return .= fread ( $io, 4096 );
}
return $return;
}else{
return false;
}
}
$return = sitemap_ping_baidu(array('http://www.yourdomain.com/a.php?id=1'));
推送后百度會返回的xml文檔
復制代碼 代碼如下:
<?xml version="1.0" encoding="UTF-8"?>
<methodResponse>
<params>
<param>
<value>
<int>200</int>
</value>
<param>
</params>
</methodResponse>
狀態(tài)碼含義如下
200 | 無使用方式錯誤,需要進一步觀察返回的內(nèi)容是否正確 |
400 | 必選參數(shù)未提供 |
405 | 不支持的請求方式,我們只支持POST方式提交數(shù)據(jù) |
411 | HTTP頭中缺少Content-Length字段 |
413 | 推送的數(shù)據(jù)過大,超過了10MB的限制 |
422 | HTTP頭中Content-Length聲明的長度和實際發(fā)送的數(shù)據(jù)長度不一致 |
500 | 站長平臺服務器內(nèi)部錯誤 |
關于百度實時推送api接口的應用案例問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業(yè)資訊頻道了解更多相關知識。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。