完善微信token获取

This commit is contained in:
cool 2023-08-15 15:55:53 +08:00
parent 89edb2e84e
commit 0a7f09d733

View File

@ -1,5 +1,5 @@
import { Config, Provide } from '@midwayjs/decorator';
import { BaseService, CoolCommException } from '@cool-midway/core';
import { BaseService, CoolCache, CoolCommException } from '@cool-midway/core';
import axios from 'axios';
import * as crypto from 'crypto';
import { v1 as uuid } from 'uuid';
@ -20,12 +20,12 @@ export class UserWxService extends BaseService {
* @param url URL#(JS接口页面的完整URL)
*/
public async getWxMpConfig(url: string) {
const access_token = await this.getWxToken();
const token = await this.getWxToken();
const ticket = await axios.get(
'https://api.weixin.qq.com/cgi-bin/ticket/getticket',
{
params: {
access_token: access_token.data.access_token,
access_token: token.access_token,
type: 'jsapi',
},
}
@ -66,16 +66,18 @@ export class UserWxService extends BaseService {
* @param appid
* @param secret
*/
@CoolCache(3600)
public async getWxToken(type = 'mp') {
//@ts-ignore
const conf = this.config.wx[type];
return await axios.get('https://api.weixin.qq.com/cgi-bin/token', {
const result = await axios.get('https://api.weixin.qq.com/cgi-bin/token', {
params: {
grant_type: 'client_credential',
appid: conf.appid,
secret: conf.secret,
},
});
return result.data;
}
/**