微信公众平台接口实现发送信息代码实例
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
微信是一种生活方法,现在越来越多的网站用户需要实现线上线下互动功能,网站要实现与微信对接,那就涉及到公众平台的开发,至于怎么申请公众平台在此我就不多说了,只要进入腾讯的微信平台网站(weixin.qq.com),根据流程,即可申请好.重点是如何实现简单的功能开发.
通过微信公众账号及密码进入,点击"高级功能"-->开发模式(进入)-->即可查看到AppId及AppSecret < ?php $AppId="wxde9e41f7c2d3xxxx";填入上图所示的appId号 $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,即经过微信加密了的. "msgtype":"text", "text": { "content":"欢迎关注新东方优能中学教育微信,好礼享不停!" } }'; $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 编辑过 |
关键字查询
相关文章
正在查询... |