Blogger Information
Blog 2
fans 0
comment 1
visits 12643
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
新浪短网址api接口&腾讯短网址api接口分享
nmnn
Original
1941 people have browsed it

背景:
    自新浪关闭了大量的API KEY之后,市面上很多新浪短网址api接口都已经失效。经过亲测,今天给大家分享几款仍然可以稳定使用的新浪短网址api接口和腾讯短网址api接口。

新浪(t.cn)短网址api接口:
    1,http://qingmeidwz.cn/shorten.json?url_long=http://www.baidu.com

    2,http://muzidwz.cn/sina_short.php?data=http://www.baidu.com

    3,http://xuewaurl.cn/short_tcn.php?url=http://www.baidu.com

    4,http://qianlangdlj.cn/get_url.php?link=http://www.baidu.com

腾讯(url.cn)短网址api接口:
    1,http://qingmeidwz.cn/wxshorturl.php?url_long=http://www.baidu.com

    2,http://muzidwz.cn/tencent.jason?data=http://www.baidu.com

    3,http://xuewaurl.cn/wxshort.do?url=http://www.baidu.com

    4,http://qianlangdlj.cn/short_qq.html?link=http://www.baidu.com

使用说明:
    将以上新浪短网址api接口&腾讯短网址api接口的"http://www.baidu.com"部分替换成您所需要的长链接即可生成对应的新浪短网址&腾讯短网址

接口代码演示/DEMO:
    以http://qingmeidwz.cn/shorten.json?url_long=http://www.baidu.com为例

PHP调用代码:

$url = 'http://www.baidu.com';
$api_url = ''.urlencode($url);
$short_url = file_get_contents($api_url);
echo $short_url;

JAVA调用代码:

 public static void main(String path[]) throws Exception {
    URL u = new URL("http%3A%2F%2Fwww.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"));
    }

Python调用代码:

  import urllib, urllib2, sys
    host = ''
    path = ''
    method = 'GET'
    querys = '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)


    以上所有新浪短网址api接口&腾讯短网址api接口都是经过我亲测可用且稳定,大家可以放心使用!

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post