# 长链接转短链接接口
主要使用场景: 开发者用于生成二维码的原链接(商品、支付二维码等)太长导致扫码速度和成功率下降,将原长链接通过此接口转成短链接再生成二维码将大大提升扫码速度和成功率。
**参数说明**
| 参数 | 说明 |
| --- | --- |
| $longUrl | 要转换的长链接 |
**调用举例**
```
//要转换的长链接
$url = 'http://bbs.houdunwang.com/forum.php?mod=viewthread&tid=105786&extra=page%3D1%26filter%3Dlastpost%26orderby%3Dlastpost%26dateline%3D86400%26typeid';
//将长链接转为短链接
$res = WeChat::instance('shorturl')->makeShortUrl($url);
```
**返回值**
```
[
"errcode"=>0,
"errmsg"=>"ok",
"short_url"=>"http:\/\/w.url.cn\/s\/AvCo6Ih"
]
```