簡要描述:
目前成都創(chuàng)新互聯(lián)已為上千多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、網(wǎng)站改版維護(hù)、企業(yè)網(wǎng)站設(shè)計(jì)、漯河網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。微信短網(wǎng)址url.cn鏈接生成
微信短網(wǎng)址的應(yīng)用場(chǎng)景很廣,譬如短信營銷、郵件推廣、微信營銷、QQ營銷、自媒體推廣、渠道推廣等,都會(huì)用到短網(wǎng)址。究其原因是在于短網(wǎng)址可以降低推廣成本、...
請(qǐng)求URL:
http://maiyurl.cn/tengxurl?url_long=http://www.baidu.com
http://www.sinadwz.cn/urlcn/api?url_long=http://www.baidu.com
/tupian/20230522/api
請(qǐng)求方式:
GET
參數(shù):
參數(shù)名 |
必選 |
類型 |
說明 |
---|---|---|---|
url | 是 | string | 需要縮短的鏈接 |
請(qǐng)求示例
http://maiyurl.cn/tengxurl?url_long=http://www.baidu.com
返回示例
{"short_url": "/tupian/20230522/sorry返回參數(shù)說明
參數(shù)名 |
類型 |
說明 |
---|---|---|
short_url | string | 縮短后的鏈接 |
long_url | string | 原長鏈接 |
1、PHP請(qǐng)求示例:
$url = 'http://www.baidu.com'; $api_url = ' http://maiyurl.cn/weixin/short?link=http://www.baidu.com; $short_url = file_get_contents($api_url); echo $short_url;
2、Java請(qǐng)求示例:
public static void main(String path[]) throws Exception { URL u = new URL(" http://maiyurl.cn/weixin/short?link=http://www.baidu.com"); InputStream in = u.openStream(); ByteArrayOutputStream out = new ByteArrayOutputStream(); try { byte buf[] = new byte[1024]; int read = 0; while ((read = in .read(buf)) > 0) { out.write(buf, 0, read); } } finally { if ( in != null) { in .close(); } } byte b[] = out.toByteArray(); System.out.println(new String(b, "utf-8")); }
3、Python請(qǐng)求示例:
import urllib, urllib2, sys host = ' http://maiyurl.cn' path = '/weixin/short' method = 'GET' querys = 'link=http%3A%2F%2Fwww.baidu.com' bodys = {} url = host + path + '?' + querys request = urllib2.Request(url) response = urllib2.urlopen(request) content = response.read() if (content): print(content)
備注
更多接口請(qǐng)?jiān)L問API接口官網(wǎng)
http://maiyurl.cn