1 Star 0 Fork 0

laughing66/egg_wechat

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
laughing66 提交于 2020-06-20 15:13 . menu
'use strict';
module.exports = app => {
app.beforeStart(async () => {
await app.runSchedule('access_token');
const menu = {
button: [
{
name: '组一',
sub_button: [
{
type: 'click',
name: 'click',
key: 'click',
},
{
type: 'view',
name: 'view',
url: 'http://chrish.free.ngrok.cc',
},
],
},
{
name: '组二',
sub_button: [
{
type: 'scancode_waitmsg',
name: '扫码带提示',
key: 'scancode_waitmsg',
},
{
type: 'scancode_push',
name: '扫码推事件',
key: 'scancode_push',
},
{
type: 'pic_sysphoto',
name: '系统拍照发图',
key: 'pic_sysphoto',
},
{
type: 'pic_photo_or_album',
name: '拍照或者相册发图',
key: 'pic_photo_or_album',
},
{
type: 'pic_weixin',
name: '微信相册发图',
key: 'pic_weixin',
},
],
},
{
type: 'location_select',
name: '发送位置',
key: 'location_select',
},
],
};
// console.log(app.access_token, '---->');
const config = app.config.wechat_config;
const url = config.postCreateMenuUrl.replace('ACCESS_TOKEN', app.access_token);
const res = await app.curl(url, {
method: 'POST',
contentType: 'json',
data: menu,
dataType: 'json',
});
console.log(res);
});
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/laughing66/egg_wechat.git
git@gitee.com:laughing66/egg_wechat.git
laughing66
egg_wechat
egg_wechat
master

搜索帮助