|
@@ -19,8 +19,8 @@ class WxPublic
|
|
|
public function __construct()
|
|
|
{
|
|
|
$this->app=Factory::officialAccount([
|
|
|
- 'app_id'=>config('site.user_appid'),
|
|
|
- 'secret'=>config('site.user_appsecret'),
|
|
|
+ 'app_id'=>config('site.wx_open_appid'),
|
|
|
+ 'secret'=>config('site.wx_open_secret'),
|
|
|
'log' => [
|
|
|
'level' => 'debug',
|
|
|
'file' => RUNTIME_PATH.'/wxp/wechat.log',
|
|
@@ -40,5 +40,9 @@ class WxPublic
|
|
|
return $this->app;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ public function qr(){
|
|
|
+ return $this->getApp()
|
|
|
+ ->qrcode
|
|
|
+ ->temporary(session_create_id(),3600);
|
|
|
+ }
|
|
|
}
|