Meteor accounts package for wechat. Because this package is generally used in China, this doc will be written in chinese.
- 使Meteor应用支持微微信开放平台登录
- 支持绑定微信公众平台登录
- 若需支持微信公众平台登录,请查看https://github.com/zhaoyao91/meteor-accounts-wechat-mp
- 请自行了解微信开放平台和公众平台的关系和区别
meteor add zhaoyao91:accounts-wechat
meteor add service-configuration
server端:
ServiceConfiguration.configurations.upsert({
service: WeChat.serviceName // 可以通过Meteor.settings.public.wechatServiceName来修改这个值
}, {
$set: {
appId: '...',
secret: '...',
scope: 'snsapi_login',
mainId: 'openId'
}
});
client端:
Meteor.loginWithWeChat(function(err, res){
...
})
微信开放平台相关应用的授权回调域、对应Meteor应用的ROOT_URL以及用户访问该应用的实际url必须保持一致。