异常微博生成短链异常{"request":"/2/short_url/shorten.json","error_code":"

Posted 756623607-zhang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异常微博生成短链异常{"request":"/2/short_url/shorten.json","error_code":"相关的知识,希望对你有一定的参考价值。

一、之前的调用方式

这种方式用了大约有一年时间,之前没有问题,但是2019-8-28号突然不行了,可能是由于微博对该接口的调用做了限制。不允许通过传递source参数的方式进行请求

该接口微博API文档

  /**
     * source去新浪微博申请App Key
     * @param long_url
     * @return
     */
    @Deprecated
    public static String getShortUrl2(String long_url) 
        String result = HttpUtils.get(
                "https://api.weibo.com/2/short_url/shorten.json?source="+app_key+"&url_long=" + long_url);

        JSONObject jsonObject = JSON.parseObject(result);

        JSONObject urls = jsonObject.getJSONArray("urls").getJSONObject(0);
        String url_short = urls.getString("url_short");
        return url_short;
    

 

二、修改后的调用方式

该接口微博API文档地址

  /**
     * source去新浪微博申请App Key
     * @param long_url
     * @return
     */
    public static String getShortUrl(String long_url) 
        String result = HttpUtils.get(
                "https://api.t.sina.com.cn/short_url/shorten.json?source="+app_key+"&url_long=" + long_url);

        JSONObject jsonObject = JSON.parseArray(result).getJSONObject(0);

        String url_short = jsonObject.getString("url_short");
        return url_short;
    

 

以上是关于异常微博生成短链异常{"request":"/2/short_url/shorten.json","error_code":"的主要内容,如果未能解决你的问题,请参考以下文章

异常详细信息: System.ArgumentNullException: 值不能为空。

以短链服务为例,探讨免AppKey免认证Ajax跨域调用新浪微博API

如何解决“未定义 ASPx”错误变成“潜在危险的 Request.Path”异常?

在servlet中处理的异常 怎么在jsp页面中打印出这个异常信息?

系统方案 - 设计一个 URL 短链服务

python爬虫——urllibget和post请求异常处理浏览器伪装