安卓天气预报API接口问题

如下代码
public class Test {

  String getWeatherInform(String cityName){ 


    //百度天气API  
    String baiduUrl = null;
    try {
    baiduUrl = "http://api.map.baidu.com/telematics/v3/weather?location="+URLEncoder.encode(cityName, "utf-8")+"&output=json&ak=T2kGrs5pHE3G1mn5tQUm4h25qsH13coP";
    } catch (UnsupportedEncodingException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
    } 
    StringBuffer strBuf; 




    strBuf = new StringBuffer(); 
    try{ 
     URL url = new URL(baiduUrl); 
     URLConnection conn = url.openConnection(); 
     BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream(),"utf-8"));//转码。  
     String line = null; 
     while ((line = reader.readLine()) != null) 
     strBuf.append(line + " "); 
     reader.close(); 
    }catch(MalformedURLException e) { 
     e.printStackTrace(); 
    }catch(IOException e){ 
     e.printStackTrace();
    } 
    return strBuf.toString(); 
    } 




    public static void main(String[] args){
    Test baidu = new Test();
    System.out.println(baidu.getWeatherInform("海淀"));
    }

}
运行时显示{"status":240,"message":"APP 服务被禁用"}
请问哪里错了 ak是才从百度申请的服务端ak
图片说明

40 APP服务被禁用,请确认app是否设置类型及是否开启了对应服务 ,在控制台check。

百度的天气接口已关闭。改用高德的吧,这个真的没办法,控制台也搞不定的

网上不是挺多免费的吗?