firstphp/firstphp-wxapp

微信小程序开发组件 for hyperf

v1.73 2022-03-09 12:27 UTC

README

安装组件:

composer require firstphp/firstphp-wxapp

发布配置:

php bin/hyperf.php vendor:publish firstphp/firstphp-wxapp

编辑.env配置:

WXAPP_APPID=wxda93db123lafdu83d
WXAPP_APPSECRET=87afeef9df90b74g4a8l9ca8d67b5742
WXAPP_KEY=mWm1DkAVBAZD2L5rs3QWKeoWa62wLumjqCXG9HifLdM
WXAPP_URL=https://api.weixin.qq.com/

示例代码:

use Firstphp\FirstphpWxapp\WxappInterface;

......

/**
 * @Inject
 * @var WxappInterface
 */
protected $wxappInterface;

public function test() {
    $res = $this->wxappInterface->getAccessToken();
    var_dump($res);
}