微信公眾平臺(tái)接口實(shí)現(xiàn)發(fā)送信息代碼實(shí)例
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
微信是一種生活方法,現(xiàn)在越來(lái)越多的網(wǎng)站用戶(hù)需要實(shí)現(xiàn)線(xiàn)上線(xiàn)下互動(dòng)功能,網(wǎng)站要實(shí)現(xiàn)與微信對(duì)接,那就涉及到公眾平臺(tái)的開(kāi)發(fā),至于怎么申請(qǐng)公眾平臺(tái)在此我就不多說(shuō)了,只要進(jìn)入騰訊的微信平臺(tái)網(wǎng)站(weixin.qq.com),根據(jù)流程,即可申請(qǐng)好.重點(diǎn)是如何實(shí)現(xiàn)簡(jiǎn)單的功能開(kāi)發(fā).
通過(guò)微信公眾賬號(hào)及密碼進(jìn)入,點(diǎn)擊"高級(jí)功能"-->開(kāi)發(fā)模式(進(jìn)入)-->即可查看到AppId及AppSecret < ?php $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", //填入切確的用戶(hù)ID,即經(jīng)過(guò)微信加密了的. "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); ?> 該文章在 2014/12/3 0:25:03 編輯過(guò) |
關(guān)鍵字查詢(xún)
相關(guān)文章
正在查詢(xún)... |