
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
node-weixin-menu
Advanced tools
Menu apis for weixin
微信菜单API和命令行工具
微信菜单API是(node-weixin-api 或者 node-weixin-express)的一个子项目。 它提供:
交流QQ群: 39287176
注:
node-weixin-express是基于node-weixin-*的服务器端参考实现。
node-weixin-api是基于node-weixin-*的API接口SDK。
它们都是由下列子项目组合而成:
node-weixin-config 用于微信配置信息的校验
node-weixin-auth 用于与微信服务器握手检验
node-weixin-util 一些常用的微信请求,加密,解密,检验的功能与处理
node-weixin-request 微信的各类服务的HTTP请求的抽象集合
node-weixin-oauth 微信OAuth相关的操作
node-weixin-pay 微信支付的服务器接口
node-weixin-jssdk 微信JSSDK相关的服务器接口
node-weixin-menu 微信菜单相关的操作与命令
$ npm install --save node-weixin-menu
var nodeWeixinMenu = require('node-weixin-menu');
var app = {
id: process.env.APP_ID,
secret: process.env.APP_SECRET,
token: process.env.APP_TOKEN
};
var auth = require("node-weixin-auth");
var config = require("node-weixin-config");
config.app.init(app);
var menu = {
"button": [
{
"type": "view",
"name": "我要下单",
"url": "http://www.soso.com/"
},
{
"name": "菜单",
"sub_button": [
{
"type": "view",
"name": "搜索",
"url": "http://www.soso.com/"
},
{
"type": "view",
"name": "视频",
"url": "http://v.qq.com/"
},
{
"type": "click",
"name": "赞一下我们",
"key": "V1001_GOOD"
}
]
}
]
};
nodeWeixinMenu.create(app, menu, function (error, data) {
//error === true
//data.errcode === 0
//data.errmsg === 'ok'
});
nodeWeixinMenu.get(app, function (error, data) {
//error === true
//typeof data.menu
//typeof data.menu.button
});
nodeWeixinMenu.customize(app, function (error, data) {
//error === true
//data.is_menu_open === 1
//data.selfmenu_info
//data.selfmenu_info.button
});
nodeWeixinMenu.remove(app, function (error, data) {
//error === true
//data.errcode
//data.errmsg
});
$ npm install --global node-weixin-menu
$ wxmenu --help
$#获取菜单
$ wxmenu get --id WX_ID --secret WX_SECRET --token WX_TOKEN
$#获取自定义菜单
$ wxmenu customize --id WX_ID --secret WX_SECRET --token WX_TOKEN
$#删除菜单
$ wxmenu remove --id WX_ID --secret WX_SECRET --token WX_TOKEN
$#创建菜单
$ wxmenu create --id WX_ID --secret WX_SECRET --token WX_TOKEN --menu menu.json
注:使用时需要将WX_ID, WX_SECRET, WX_TOKEN,替换成你自己的真实参数
Apache-2.0 © calidion
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.