-
Notifications
You must be signed in to change notification settings - Fork 317
wechat_short_url
Sword edited this page May 9, 2023
·
6 revisions
开发者用于生成二维码的原链接(商品、支付二维码等)太长导致扫码速度和成功率下降,将原长链接通过此接口转成短链接再生成二维码将大大提升扫码速度和成功率。
use Thenbsp\Wechat\Wechat\ShortUrl;
$shortUrl = new ShortUrl($accessToken);
var_dump($shortUrl->toShort('http://mp.weixin.qq.com/wiki/'));
使用缓存以避免重复、无意义的接口调用。
use Thenbsp\Wechat\Wechat\ShortUrl;
$shortUrl = new ShortUrl($accessToken);
$shortUrl->setCache($cacheDriver);
var_dump($shortUrl->toShort('http://mp.weixin.qq.com/wiki/'));