php模拟微信公众号服务器,GitHub - Lin07ux/wechat-third-server: 使用 ThinkPHP、Vue 搭建一个带有后台的微信公众号第三方服务器的基础模板...

微信公众号第三方服务器

该项目用于实现一个最基本的微信公众号第三方服务器开发的模板。

基于:

ThinkPHP v3.2.3

Vue v2.2.0

Vue-resource v1.0.3

功能

微信用户访问的前端模块

后台管理模块:登陆、微信公众号菜单设置、微信自动回复设置等

微信服务器通讯模块:接收并解析微信服务器的推送信息、发送消息给微信服务器等

数据库

使用 MySQL 5.6

基本结构见./SQL目录

Nginx 配置

server {

listen 80;

server_name domain.com;

root /usr/share/nginx/html/domain.com/Public;

charset utf-8;

access_log /var/log/nginx/lin07ux.access.log main;

# 默认主页

location / {

index index.html index.htm index.php;

try_files $uri /index.php/$uri;

}

# 管理员页面

location = /admin {

rewrite ^.*$ /admin.php last;

}

location ^~ /admin/ {

rewrite ^\/admin\/(.*)$ /admin.php/$1 last;

}

# 执行 php 脚本

location ~ .+\.php(/|$) {

# fastcgi_pass 127.0.0.1:9000;

fastcgi_pass unix:/var/run/php-fpm/php-cgi.sock;

fastcgi_index index.php;

include fastcgi.conf;

include pathinfo.conf;

}

location ~ /\.ht {

deny all;

}

location ~* \.(gif|jpg|jpeg|png|ico)$ {

# expires 30d;

# access_log on;

}

location ~ .*\.(js|css)$ {

# expires 30d;

# access_log off;

}

}

注1:将server_name的值改成自己的网站的域名。

注2:将root改成自己网站的根目录中的Public/文件夹的路径。

Ajax 返回代码

0 操作成功

1 未登录或登录失效

2 用户数据不完整

3 用户未关注公众号

9 HTTP 请求方法错误

10 参数错误

100 操作失败

101 获取数据失败

102 添加数据失败

103 更新数据失败

104 删除数据失败

150 上传文件失败

404 Not Found

使用

使用前,需要先配置公共文件Application/Common/Config/config.php,根据其中的注释信息,根据你的实际情况,填写完整数据库、上传文件目录、微信公众号的相关信息。

默认情况下,配置好即可使用了。

在微信公众号后台中,开发 - 基本配置 - 服务器配置 - URL(服务器地址)处填写的 URL 为http[s]://your-domain.com/wechat.php。

如果需要开启调试模式,请设置对应的入口文件的APP_DEBUG为 true。

如果要调试 Vue,一般就直接将对应的模板中的vue.min.js换成vue.js即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值