-
Notifications
You must be signed in to change notification settings - Fork 43
wechat_short_url
刘广财 edited this page Apr 4, 2018
·
1 revision
开发者用于生成二维码的原链接(商品、支付二维码等)太长导致扫码速度和成功率下降,将原长链接通过此接口转成短链接再生成二维码将大大提升扫码速度和成功率。
use Itxiao6\Wechat\Wechat\ShortUrl;
$shortUrl = new ShortUrl($accessToken);
var_dump($shortUrl->toShort('http://mp.weixin.qq.com/wiki/'));使用缓存以避免重复、无意义的接口调用。
use Itxiao6\Wechat\Wechat\ShortUrl;
$shortUrl = new ShortUrl($accessToken);
$shortUrl->setCache($cacheDriver);
var_dump($shortUrl->toShort('http://mp.weixin.qq.com/wiki/'));- 基础支持
- 网页授权
- 用户管理
- 自定义菜单
- 微信支付
- 消息管理
- 事件