game-worker/kiri-wchat

一个参数效验扩展

v2.18 2024-02-09 09:01 UTC

This package is not auto-updated.

Last update: 2024-04-24 06:36:26 UTC


README

项目介绍

微信小程序接口

配置项


$config = new \common\Config();
$config->setAppid('');
$config->setAppsecret('');
$config->setMchId('');
$config->setKey('');
$config->setRemoteAddr('');
$config->setDeviceInfo('');
$config->setAccessToken('');


$instance = \wchat\Wx::getMiniProGaRamPage();
$instance->setConfig($config);

$recharge = $instance->getRecharge();
$recharge->cashWithdrawal(1, 'xxx', 'ooo');
$recharge->recharge(1, '', '');

$account = $instance->getAccount();
$account->setSavePath('');
$account->login('');
$account->createwxaqrcode('pages/index/index',200);
$account->getwxacode('pages/index/index',150,true);
$account->getwxacodeunlimit('pages/index/index',150,true);


$message = $instance->getMessage();
$message->setOpenid('');
$message->sendCardNews('');

$template = $instance->getTemplate();
$template->setOpenId('');
$template->setFormId('');
$template->setTemplateId('');
$template->setPage('');
$template->sendTemplate();