- 微信�基本接口实现
- 微信 Token 验证
- 获取 access_token
- 处理微信消息
- 素材管理
- 用户信息与标签管理
- 自定义菜单
- 获取 Ticket 实现 SDK 接入权限签名算法
-
签名算法
签名生成规则如下:参与签名的字段包括noncestr(随机字符串), 有效的jsapi_ticket, timestamp(时间戳), url(当前网页的URL,不包含#及其后面部分) 。对所有待签名参数按照字段名的ASCII 码从小到大排序(字典序)后,使用URL键值对的格式(即key1=value1&key2=value2…)拼接成字符串string1。这里需要注意的是所有参数名均为小写字符。对string1作sha1加密,字段名和字段值都采用原始值,不进行URL 转义。
-
- 实现微信 JS-SDK 权限接入
- 用户授权与用户个人资料获取
- 公众号开发
- 利用 RAP Mock 数据接口测试
- 开发人物首页
开发首页- ...
# install dependencies
$ npm install # Or yarn install*[see note below]
# serve with hot reload at localhost:3100
$ npm run dev
# build for production and launch server
$ npm run build
$ npm start
# generate static project
$ npm run generate
*Note: Due to a bug in yarn's engine version detection code if you are using a prerelease version of Node (i.e. v7.6.0-rc.1) you will need to either:
- Use
npm install
- Run
yarn
with a standard release of Node and then switch back
For detailed explanation on how things work, checkout the Nuxt.js docs.