wwww961h 大佬有话说 : 2020-4-1 21:20:28
熊掌号到底怎么推送网站内容进去呀
好像不太会,不会让我手动复制文章+图片吧,好像又没看到在哪可以直接一键搞定的,
或者是必须用API吗?
一个不知名网友 大佬有话说 : 2020-4-1 21:21:12
好像还在推送 我也不知道啊
3721 大佬有话说 : 2020-4-1 21:22:47
<?php
$urls = array(
‘https://www.网址.com/6766.html’, // 要推送的文章地址
‘https://www.网址.com/6374.html’,
);
$api = ‘http://data.zz.baidu.com/urls?appid=你的熊掌号 appid&token=你的熊掌号 taoken&type=batch’;
$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;
?>
转载自百度 差不多这样 !
wwww961h 大佬有话说 : 2020-4-1 21:30:37
3721 大佬有话说 : 2020-4-1 21:22
转载自百度 差不多这样 !
谢谢了呀,看来还是API更方便点