PHP code example of 96qbhy / qq-microapp

1. Go to this page and download the library: Download 96qbhy/qq-microapp library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

96qbhy / qq-microapp example snippets




$redisCache = new \Doctrine\Common\Cache\RedisCache();// 更多缓存驱动请移步 https://www.doctrine-project.org/projects/doctrine-orm/en/current/reference/caching.html
//$redisCache->setRedis($redis); // 设置你的 redis 实例,可选


$app = new \Qbhy\QqMicroApp\QqMicroApp([
    'access_key' => 'your app id',
    'secret_key' => 'your app secret',
    'debug' => true,
    'cache' => $redisCache, // 可选参数,你也可以用 \Doctrine\Common\Cache\ 下面得其他缓存驱动,比如 sqlite 等
]);

$factory = new \Qbhy\QqMicroApp\Factory([
    'debug' => true,
    'default' => 'default', // 默认应用
    'drivers' => [
        'default' => [
            'access_key' => 'your app id',
            'secret_key' => 'your app secret',
            'mch_id' => 'your merchant id',
            'mch_key' => 'your merchant key',
        ],
    ],
]);

$otherApp = $factory->make('default');


var_dump($app->access_token->getToken()); // 获取 access token
var_dump($app->auth->session('client code')); // 获取 登录
var_dump($app->temp_msg->send('openid', 'template id', 'form id', [], 'page')); //模板消息
var_dump($app->subscription_msg->send('openid', 'template id', 'form id', [], 'page')); //订阅消息
var_dump($app->storage); // 存储接口
var_dump($app->qr_code->create('/pages/index')); // 创建二维码接口
var_dump($app->content_security); // 内容安全接口、图片和文本检测
var_dump($app->decrypt->decrypt('encrypted data', 'session key', 'iv')); // 敏感数据处理
var_dump($app->payment); // 开发完未测试,本人商户号还未通过审核