[更新]增加又模式网页授权兼容

This commit is contained in:
Anyon 2018-03-19 15:38:32 +08:00
parent dcda1c9bc8
commit e1e39b0023

View File

@ -36,4 +36,16 @@ class Wechat extends Controller
return $this->fetch('wechat@api/tools/oauth', ['fans' => $fans]);
}
/**
* 网页JSSDK测试
* @return mixed
* @throws \WeChat\Exceptions\InvalidResponseException
* @throws \WeChat\Exceptions\LocalCacheException
*/
public function jssdk()
{
$wechat = WechatService::script();
$options = $wechat->getJsSign($this->request->url(true));
return $this->fetch('wechat@api/tools/jssdk', ['options' => $options]);
}
}