分享好友 教程首页 教程搜索 频道列表

DESTOON百度原生小程序主动推送插件,原生小程序自动同步插件(支持6.0-8.0全部版本)

2021-12-07 15:058610
+关注2
核心提示:​做百度小程序,百度小程序额度增加了,就在想如何在destoon上发一条内容推送一条...

做百度小程序,百度小程序额度增加了,就在想如何在destoon上发一条内容推送一条到小程序上,也不用每天手动推送。达到小程序端和站点自动同步,不会浪费推送限额。

上代码:


1、打开api\extend.func.php    【注意你这个文件有没有进行过二次开发,如果有,就将下面的复制进去即可】


增加函数:

//百度小程序推送
function baiduMini($url){
$str=file_get_contents('https://openapi.baidu.com/oauth/2.0/token?grant_type=client_credentials&client_id=小程序app key&client_secret=小程序密钥&scope=smartapp_snsapi_base');
$array=json_decode($str,true);
$token=$array["access_token"];
$data['type'] = 1;
$data['url_list'] = $url;
$api = 'https://openapi.baidu.com/rest/2.0/smartapp/access/submitsitemap/api?access_token=' . $token;
$ch = curl_init();
$options =  array(
CURLOPT_URL => $api,
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_NOBODY => false,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_0,
CURLOPT_POSTFIELDS => http_build_query($data),
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_HTTPHEADER => array('Content-Type: application/x-www-form-urlencoded'),
);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
$data = json_encode($result, true);
}


打开module\mall\mall.class.php(其他模块的打开module\模块名称\模块名称.class.php)


function _($e) {

在上面增加:

//百度小程序推送
function baidu_MiniPro($itemid) {
    global $_username, $MOD;
    if(is_array($itemid)) {
    foreach($itemid as $v) { $this->baidu($v); }
    } else {
    $this->itemid = $itemid;
    $item = $this->get_one();
    $item['linkurl'] = '/pages/'.$MOD['moduledir'].'/detail?id='.$itemid;  如果其他小程序不一致,修改即可
    $baidu = baiduMini($item['linkurl']);
    return true;
    }
}


2-2、搜索:

if($post['status'] == 3 && $post['username'] && $MOD['credit_add']) {
  credit_add($post['username'], $MOD['credit_add']);
  credit_record($post['username'], $MOD['credit_add'], 'system', lang('my->credit_record_add', array($MOD['name'])), 'ID:'.$this->itemid);
}


在下面增加:

if($post['status'] == 3) {
$this->baidu_MiniPro($this->itemid);//百度小程序
}


修改完成,这样就每天只要发布都会自动同步到百度原生小程序上了。


百度资源站后台示意图

本文标签: #原生小程序 #百度小程序 #推送 #同步 #信息
整理员:网络转载
免责声明:凡注明来源本网的所有作品,均为本网合法拥有版权或有权使用的作品,欢迎转载,注明出处。非本网作品均来自互联网,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责。
生成海报
您可能在找更多
下一篇
我来说两句
抢沙发