花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

織夢DedeCMS提交mip數(shù)據(jù)API接口

時間: 2019-04-21 19:32 閱讀: 作者:素材無憂網(wǎng)

提升百度熊掌號指數(shù)需要做MIP改造(移動頁面加速器),只有提交的MIP頁面占到50%才能獲得10分的加分。影響頁面打開速度的主要有圖片和復雜的JS,已經(jīng)進行了MIP改造,采用另外一套模板,不污染原有模板,原來寫過熊掌號的API接口,在原來的基礎上做修改即可,增加了打印所提交的URL的功能。

織夢DedeCMS提交mip數(shù)據(jù)API接口

提升熊掌號指數(shù)

在根目錄下新建一個baidu_mip.php文件,把下面的代碼粘貼進去,這個API接口做的是舊URL的提交,適合已經(jīng)做了MIP改造的網(wǎng)站。設置時間為2018年11月11日,請根據(jù)自己的實際情況調(diào)整。

<?php
/*
*MIP改造提交數(shù)據(jù)API接口
*by 六久閣 www.lol9.cn
*2018.12月
*/
require_once ("include/common.inc.php");
require_once "include/arc.partview.class.php";
require_once('include/charset.func.php');
$year = date("Y");
$month = date("m");
$day = date("d");
$dayBegin = mktime(0,0,0,11,11,2018);//開始時間2018年11月11日
$dayEnd = mktime(23,59,59,$month,$day,$year);
$query = "SELECT arch.id,types.typedir FROM dede_arctype as types inner join dede_archives as arch on types.id=arch.typeid where pubdate<".$dayEnd." AND pubdate>".$dayBegin."";
$urls="";
$dsql->Execute('arch.id,types.typedir',$query);
while($row = $dsql->GetArray('arch.id,types.typedir'))
{
$urls.="https://www.lol9.cn/mip".str_replace("{cmspath}","",$row['typedir'])."/".$row[id].".html".",";//靜態(tài)URL,自行修改
}
echo "URL:<br>".str_replace(",","<br>",$urls); //打印所有提交的數(shù)據(jù)
$urls=substr($urls,0,-1);
$urls = explode(",",$urls);
$api = 'http://data.zz.baidu.com/urls?site=xxx&token=xxx&type=mip';//API接口自行修改
$ch = curl_init();
$options =  array(
CURLOPT_URL => $api,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => implode("\n", $urls),
CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
echo $result;
?>

如果提交的URL沒有問題,就會順利通過,大家可以在站長工具后臺查看“錯誤反饋”,時間上有些滯后,耐心等兩天吧。提交數(shù)據(jù)的MIP化比例需維持在50%,否則失去該項得分。

image.png

↑MIP數(shù)據(jù)提交成功

版權聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!

轉(zhuǎn)載請注明: 織夢DedeCMS提交mip數(shù)據(jù)API接口

標簽:  
相關文章
模板推薦