0.4.0 • Published 5 years ago

fastify-wechat v0.4.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

fastify-wechat

Install

npm install fastify-wechat --save

Usage

Example:

const fastify = require('fastify');

fastify.register(require('fastify-wechat'), {
  mp: {
    appid: 'mp appid',
    secret: 'mp secret',
  },
  open: {
    appid: 'open appid',
    secret: 'open secret',
  },
});

fastify.get('/goWechatLogin', async (req, reply) => {
  const redirectUrl = 'http://domain.com/wxconnect';
  return await fastify.wechat.getAuthorizeUrl(redirectUrl);
});
0.4.0

5 years ago

0.3.8

5 years ago

0.3.7

5 years ago

0.3.6

5 years ago

0.3.5

5 years ago

0.3.0

5 years ago

0.1.0

5 years ago