We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
function getAccessToken(cb) { ... }, function saveAccessToken(accessToken,cb){ ... }
配置中这2个方法具体用法是什么?有更具体的例子么
The text was updated successfully, but these errors were encountered:
看源码大概知道怎么用了
let accessTokenTmp = ''; passport.use( 'wechat-work', new WechatWorkStrategy( { corpId: process.env.WECHAT_WORK_CORP_ID, corpSecret: process.env.WECHAT_WORK_CORP_SECRET, agentId: process.env.WECHAT_WORK_AGENT_ID, callbackURL: process.env.WECHAT_WORK_CALLBACK_URL || "http://localhost:4242/auth/wechatwork/callback", }, (profile, done) => { getWechatWorkUserInfo(accessTokenTmp, profile.UserId).then(result => { const { data } = result; if(!data.status) { done(error, false, { message: '用户未激活' }); } done( null, new unleash.User({ id: data.userid, name: data.name, username: data.alias, email: data.email, imageUrl: data.avatar, }), ); }).catch(error => { console.log(error); done(error, false, { message: '查询企业微信用户信息出错' }); }); }, function getAccessToken(cb) { cb(null, accessTokenTmp); }, function saveAccessToken(accessToken, cb) { accessTokenTmp = accessToken.access_token; }, ), );
accessTokenTmp 我可以在调微信接口查询用户详细信息时用到
Sorry, something went wrong.
No branches or pull requests
function getAccessToken(cb) { ... },
function saveAccessToken(accessToken,cb){ ... }
配置中这2个方法具体用法是什么?有更具体的例子么
The text was updated successfully, but these errors were encountered: