app = Factory::miniProgram($miniProgramConfig); $cache = new WechatCache(); $this->app->rebind('cache', $cache); Log::record($cache); } /** * 获取小程序接口实例 * @return \EasyWeChat\MiniProgram\Application */ public function getApp() { return $this->app; } public function getPhoneNumber($code){ $params = [ 'code' => $code ]; return $this->app->live->httpPostJson('wxa/business/getuserphonenumber', $params); } }