当前位置:   article > 正文

fastadmin使用esaywechat生成带参数小程序码_easy wechat3 生成小程序二维码

easy wechat3 生成小程序二维码

    /**
     * 司机专属推广码
     */
    public function qrcode()
    {
        $user = $this->auth->getUser();
        if(empty($user['qrcode'])){
            $thirdConfig = get_addon_config('litestore');
            $config = [
                'app_id' =>  $thirdConfig['AppID'], // 小程序ID
                'secret' => $thirdConfig['AppSecret'], // 密码
                // 下面为可选项
                // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
                'response_type' => 'array',
                'log' => [
                    'level' => 'debug',
                    'file' => __DIR__.'/wechat.log',
                ],
            ];
            $app = Factory::miniProgram($config);

            $response  = $app->app_code->getUnlimit('driving_id-'.$this->auth->id, [
                'page'  => 'pages/login/login_driver',
                'width' => 600,
            ]);
//            var_dump($response);die;
            // 司机码保存到本地
            if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
                $filename = $response->save(ROOT_PATH.'public/uploads/drivingcode');
                \app\common\model\User::where('id',$this->auth->id)->update(['qrcode'=>'/uploads/drivingcode/'.$filename]);
            }
            $this->success('',config('site.siteurl').'/uploads/drivingcode/'.$filename);
        } else {
            $this->success('',config('site.siteurl').$user['qrcode']);
        }
        
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/132049
推荐阅读
  

闽ICP备14008679号