@@ -108,4 +108,17 @@ class WeChatMnpService
}
+ // 生成微信小程序url_scheme码
+ public function getGeneratescheme($page,$query='',$env_version='release')
+ {
+ return $this->app->getClient()->postJson('wxa/generatescheme', [
+ 'jump_wxa' => [
+ 'path'=>$page,
+ 'query'=>$query,
+ 'env_version'=>$env_version
+ ]
+ ]);
+ }
+