微信公众号
文章平均质量分 89
php开发微信公众号实战教程
smile_qcr
这个作者很懒,什么都没留下…
展开
-
微信公众号上传永久图片素材、图文素材,以及群发已上传的图文素材
直接看代码$file_path = $_SERVER['DOCUMENT_ROOT'] . "/uploads/test.jpg";//获取图片的路径,这里一定要是绝对路径才可以$url = 'https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=' . $access_token . '&type=image';if (!file_exists($file_path)) { die('图片不存在');}原创 2020-05-13 14:12:24 · 1000 阅读 · 0 评论 -
微信公众号普通消息以及事件消息的接收和反馈
1:我们看微信公众号开发文档上上面说微信服务器会发消息发送到我们的服务器上面去,所以我们需要改造一下我们方法<?phpnamespace app\wxauth\controller;use think\Controller;use think\Request;class WxauthController extends Controller { // 外部接口, 测试 public function wxauth(Request $request) { if ($reques原创 2020-05-13 13:58:30 · 738 阅读 · 0 评论 -
微信公众号配置服务器地址并配置url
微信配置服务器地址并配置url1:首先在微信配置服务器地址上填写你的域名,必须是80端口和http或者https的域名,一级二级域名都行2:打开wxauth文件,开始写<?phpnamespace app\wxauth\controller;use think\Controller;use think\Request;class WxauthController extends Controller { // 外部接口, 测试 public function wxau...原创 2020-05-13 11:50:16 · 7432 阅读 · 3 评论