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

PHPz
Release: 2018-05-26 14:46:20
Original
10099 people have browsed it

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"}
Copy after login

Interface return data:

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

converted to json:

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

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!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!