Home  >  Article  >  WeChat Applet  >  WeChat public account development: Convert long connections into short links through accesstoken

WeChat public account development: Convert long connections into short links through accesstoken

PHPz
PHPzOriginal
2018-05-26 14:46:209998browse

Business scenario: During the development process of WeChat public accounts, there are often some long links. If a QR code is generated at this time, the recognition will be slow during the scanning process. If it is stored in the database, it will cause the database to be corrupted. The field length needs to be set very long, so it is increasingly important to convert long links into short links.

Interface description document address:

mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1443433600&token=&lang=zh_CN

Interface calling URL: https: //api.weixin.qq.com/cgi-bin/shorturl?access_token=ACCESS_TOKEN

Interface request method: post

Interface parameter data: json

Interface transmission Reference example:

{"action":"long2short","long_url":"https:\/\/ss2.bdstatic.com\/kfoZeXSm1A5BphGlnYG\/icon\/7282.png"}

Interface return data:

{"errcode":0,"errmsg":"ok","short_url":"http:\/\/w.url.cn\/s\/An3qXvS"}

converted to json:

{
    "errcode":0,
    "errmsg":"ok",
    "short_url":"http://w.url.cn/s/An3qXvS"
}

The specific implementation code is as follows:

The effect is as shown:

Okay, this time we will explain how to convert a long URL into a short URL through the WeChat interface

The above is the detailed content of WeChat public account development: Convert long connections into short links through accesstoken. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn