...
|
...
|
@@ -194,4 +194,35 @@ if (!function_exists('build_heading')) { |
|
|
}
|
|
|
return $result;
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 微信公众号
|
|
|
* 经纪人审核 消息推送
|
|
|
*/
|
|
|
function sendAstuWxMsgToAgent($info, $openid, $tourl, $appid, $secret, $ywt_appid, $pagepath)
|
|
|
{
|
|
|
$myurl = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $appid . "&secret=" . $secret;
|
|
|
$json_token = http_request($myurl);
|
|
|
$access_tokens = json_decode($json_token, true);
|
|
|
$access_token = $access_tokens['access_token'];
|
|
|
|
|
|
$template = array(
|
|
|
'touser' => $openid, //
|
|
|
'template_id' => 'zQaLnhEOQxdGOKJlDUAfEoNY4NTmNWy9a9vYzkZjGn8', //模板消息id 必须修改
|
|
|
'url' => $tourl, //点击链接
|
|
|
"miniprogram" => [
|
|
|
"appid" => $ywt_appid,
|
|
|
"pagepath" => $pagepath
|
|
|
],
|
|
|
'topcolor' => "#173177",
|
|
|
'data' => $info
|
|
|
);
|
|
|
|
|
|
$json_template = json_encode($template);
|
|
|
$url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=" . $access_token;
|
|
|
$json = http_request($url, urldecode($json_template));
|
|
|
$rs = json_decode($json, true);
|
|
|
return $rs;
|
|
|
}
|
|
|
} |
...
|
...
|
|