优惠VPS
云服务器测评

如何设置必应api 自动推送网站

首先如何获取必应的api密钥

直接上代码,复制保存为post.php,然后通过宝塔面板的计划任务添加即可。

<?php
$arr = array(
    'https://www.esphp.com.com' => array(
        'url'  => array(
            "https://www.esphp.com/sitemap.xml"
            ),
        'bing_key' => "303c2be9581c432da0f65c6b2fa1b416"
    ),
);


foreach ($arr as $i => $j) {
	//网站地址
    $website = $i;
    //站点地图
    $url = $j['url'];
    //必应key
    $bing_key = $j['bing_key'];
    
    //配额接口调用地址
    $quota_api = "https://ssl.bing.com/webmaster/api.svc/json/GetUrlSubmissionQuota?siteUrl=$website&apikey=$bing_key";
    
    //URL提交API接口调用地址
    $seturl_api = "https://ssl.bing.com/webmaster/api.svc/json/SubmitUrlBatch?apikey=$bing_key";
    
    $s = file_get_contents($quota_api);
    $s = json_decode($s, true);
    
    echo "$website 必应今日剩余配额:".$s['d']['DailyQuota']."  本月剩余配额:".$s['d']['MonthlyQuota'];echo '<br>';
    
    if($s['d']['DailyQuota']){
        $ch = curl_init();
        
        //防https错误
        $xmlresponse = curl_exec($ch);
        $xml=simplexml_load_string($xmlresponse);
        
        
        $urls = array();
        foreach ($url as $key => $value) {
            curl_setopt($ch, CURLOPT_URL, $value);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            $xmlresponse = curl_exec($ch);
            $xml=simplexml_load_string($xmlresponse);
            
            foreach ($xml as $key => $value) {
            	$urls[] = $value->loc;
            }
            
        }
        shuffle($urls);
        //必应api提交每次上限100条
        if ($s['d']['DailyQuota']>=100) {
            $max = 100;
        } else {
            $max = $s['d']['DailyQuota'];
        }
        $urls = array_slice($urls, 0,$s['d']['DailyQuota']);
        if(!$urls){
            echo $website.' 今日配额已全部提交!';continue;
        }
        $url_data = array_chunk($urls, $max, true);
        
        foreach ($url_data as $key => $value) {
            $url_str = implode(',',$value);
            $url_arr = explode(',',$url_str);
            $data = array(
                "siteUrl"=>$website,
                "urlList"=>$url_arr
                );
            $ch = curl_init();
            $options =  array(
                CURLOPT_URL => $seturl_api,
                CURLOPT_POST => true,
                CURLOPT_RETURNTRANSFER => true,
                CURLOPT_POSTFIELDS => json_encode($data),
                CURLOPT_HTTPHEADER => array('Content-Type: application/json'),
            );
            curl_setopt_array($ch, $options);
            $result = curl_exec($ch);
            echo "$website 必应提交信息:".$result;echo '<br>';
        }
    }

}
?>

将必应提供的key和站点地图修改为自己的即可

赞(0)
未经允许不得转载:云服务器优惠网 » 如何设置必应api 自动推送网站

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址