微信是一種生活方法,現(xiàn)在越來越多的網(wǎng)站用戶需要實(shí)現(xiàn)線上線下互動(dòng)功能,網(wǎng)站要實(shí)現(xiàn)與微信對(duì)接,那就涉及到公眾平臺(tái)的開發(fā),至于怎么申請(qǐng)公眾平臺(tái)在此我就不多說了,只要進(jìn)入騰訊的微信平臺(tái)網(wǎng)站(weixin.qq.com),根據(jù)流程,即可申請(qǐng)好.重點(diǎn)是如何實(shí)現(xiàn)簡(jiǎn)單的功能開發(fā).
通過微信公眾賬號(hào)及密碼進(jìn)入,點(diǎn)擊"高級(jí)功能"-->開發(fā)模式(進(jìn)入)-->即可查看到AppId及AppSecret
$AppId="wxde9e41f7c2d3xxxx";填入上圖所示的appId號(hào)
$AppSecret="5615c25ff32169645fc6443f4dabxxxx";
$url="https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$AppId}&secret={$AppSecret}";
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
$a =curl_exec($ch);
$strjso=json_decode($a);
$token = $strjson->access_token;
$post='
{
"touser":"OPENID", //填入切確的用戶ID,即經(jīng)過微信加密了的.
"msgtype":"text",
"text":
{
"content":"歡迎關(guān)注新東方優(yōu)能中學(xué)教育微信,好禮享不停!"
}
}';
$url="https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token={$token}";
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,1);
curl_setopt($ch,CURLOPT_POSTFILEDS,$post);
curl_exec($ch);
curl_close($ch);
?>
原創(chuàng)文章出自:南昌建網(wǎng)站公司-百恒網(wǎng)絡(luò) 如轉(zhuǎn)載請(qǐng)注明出處!專業(yè),專注于南昌網(wǎng)站建設(shè),為用戶提供高品質(zhì)的網(wǎng)絡(luò)產(chǎn)品及優(yōu)質(zhì)服務(wù)是我們始終的追求.