1. 程式人生 > >免費介面API

免費介面API

                天氣介面
  • 氣象局介面: http://m.weather.com.cn/data/101010100.html  解析  用例

音樂介面

  • 蝦米介面 http://kuang.xiami.com/app/nineteen/search/key/歌曲名稱/diandian/1/page/歌曲當前頁?_=當前毫秒&callback=getXiamiData 
    用例
      程式碼解釋和下載
  • QQ空間音樂介面 http://qzone-music.qq.com/fcg-bin/cgi_playlist_xml.fcg?uin=QQ號碼&json=1&g_tk=1916754934 用例  程式碼解釋和下載
  • QQ空間收藏音樂介面 http://qzone-music.qq.com/fcg-bin/fcg_music_fav_getinfo.fcg?dirinfo=0&dirid=1&uin=QQ號&p=0.519638272547262&g_tk=1284234856

地圖介面

  • 阿里雲根據地區名獲取經緯度介面 http://gc.ditu.aliyun.com/geocoding?a=蘇州市  官方文件 引數解釋: 緯度,經度 type 001 (100代表道路,010代表POI,001代表門址,111可以同時顯示前三項)
  • 阿里雲根據經緯度獲取地區名介面 http://gc.ditu.aliyun.com/regeocoding?l=39.938133,116.395739&type=001 
    官方文件

IP介面

  • 新浪介面(ip值為空的時候 獲取本地的) http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=218.4.255.255
  • 淘寶介面 http://ip.taobao.com/service/getIpInfo.php?ip=63.223.108.42

手機資訊查詢介面

  • 淘寶網介面 http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=手機號
  • 拍拍介面 http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=手機號&amount=10000&callname=getPhoneNumInfoExtCallback  用例
  • 百付寶介面 https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=手機號
  • 115介面 http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=手機號
  • 有道介面 http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手機號
  • 手機線上介面 http://api.showji.com/Locating/www.showji.com.aspx?m=手機號&output=json&callback=querycallback http://tech.sina.com.cn/down/baishitong/mobile.html?code=

視訊資訊介面

  • 優酷 http://v.youku.com/player/getPlayList/VideoIDS/視訊ID (比如 http://v.youku.com/v_show/id_ XNTQxNzc4ODg0.html的ID就是XNTQxNzc4ODg0)

翻譯、詞典介面

  • 騰訊 http://dict.qq.com/dict?q=詞語

2012-12-20 10:11

PHP 手機號碼歸屬地查詢api介面


淘寶網

API地址: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443
引數:

  • tel:手機號碼

  • 返回:JSON

拍拍

API地址: http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback
引數:

  • mobile:手機號碼

  • callname:回撥函式

  • amount:未知(必須)

  • 返回:JSON

財付通

API地址: http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443
引數:

  • chgmobile:手機號碼

  • 返回:xml

百付寶

API地址: https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443
引數:

  • phone:手機號碼

  • callback:回撥函式

  • cmd:未知(必須)

  • 返回:JSON

115

API地址: http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443
引數:

  • mobile:手機號碼

  • callback:回撥函式

  • 返回:JSON


有道api介面
介面地址:http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13892101112

引數說明:

  • type : 引數手機歸屬地固定為mobile

  • q : 手機號碼

返回XML格式:

<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="mobile">
<phonenum>13892101112</phonenum>
<location>陝西延安</location>
</product>
</smartresult>

或者

http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手機號碼

返回JSON格式:

fYodaoCallBack(1, {‘product’:'mobile’,'phonenum’:’13892101112′,’location’:'陝西 延安’} , ”);



舉例:

<?php
$mobile = "15018788111";  //要查詢的電話號碼
$content = get_mobile_area($mobile);
print_r($content);

function get_mobile_area($mobile){
    $sms = array('province'=>'', 'supplier'=>'');    //初始化變數
    //根據淘寶的資料庫呼叫返回值
    $url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobile."&t=".time();  
    
    $content = file_get_contents($url);
    $sms['province'] = substr($content, "56", "4");  //擷取字串
    $sms['supplier'] = substr($content, "81", "4");
    return $sms;
}



天氣預報介面

http://api.map.baidu.com/telematics/v3/weather?location=%E7%BB%A5%E5%BE%B7&output=json&ak=11ffd27d38deda622f51c9d314d46b17

           

再分享一下我老師大神的人工智慧教程吧。零基礎!通俗易懂!風趣幽默!希望你也加入到我們人工智慧的隊伍中來!http://www.captainbed.net

這裡寫圖片描述
  • 氣象局介面: http://m.weather.com.cn/data/101010100.html  解析  用例

音樂介面

  • 蝦米介面 http://kuang.xiami.com/app/nineteen/search/key/歌曲名稱/diandian/1/page/歌曲當前頁?_=當前毫秒&callback=getXiamiData  用例  程式碼解釋和下載
  • QQ空間音樂介面 http://qzone-music.qq.com/fcg-bin/cgi_playlist_xml.fcg?uin=QQ號碼&json=1&g_tk=1916754934 用例  程式碼解釋和下載
  • QQ空間收藏音樂介面 http://qzone-music.qq.com/fcg-bin/fcg_music_fav_getinfo.fcg?dirinfo=0&dirid=1&uin=QQ號&p=0.519638272547262&g_tk=1284234856

地圖介面

  • 阿里雲根據地區名獲取經緯度介面 http://gc.ditu.aliyun.com/geocoding?a=蘇州市  官方文件 引數解釋: 緯度,經度 type 001 (100代表道路,010代表POI,001代表門址,111可以同時顯示前三項)
  • 阿里雲根據經緯度獲取地區名介面 http://gc.ditu.aliyun.com/regeocoding?l=39.938133,116.395739&type=001  官方文件

IP介面

  • 新浪介面(ip值為空的時候 獲取本地的) http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=218.4.255.255
  • 淘寶介面 http://ip.taobao.com/service/getIpInfo.php?ip=63.223.108.42

手機資訊查詢介面

  • 淘寶網介面 http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=手機號
  • 拍拍介面 http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=手機號&amount=10000&callname=getPhoneNumInfoExtCallback  用例
  • 百付寶介面 https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=手機號
  • 115介面 http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=手機號
  • 有道介面 http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手機號
  • 手機線上介面 http://api.showji.com/Locating/www.showji.com.aspx?m=手機號&output=json&callback=querycallback http://tech.sina.com.cn/down/baishitong/mobile.html?code=

視訊資訊介面

  • 優酷 http://v.youku.com/player/getPlayList/VideoIDS/視訊ID (比如 http://v.youku.com/v_show/id_ XNTQxNzc4ODg0.html的ID就是XNTQxNzc4ODg0)

翻譯、詞典介面

  • 騰訊 http://dict.qq.com/dict?q=詞語

2012-12-20 10:11

PHP 手機號碼歸屬地查詢api介面


淘寶網

API地址: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443
引數:

  • tel:手機號碼

  • 返回:JSON

拍拍

API地址: http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback
引數:

  • mobile:手機號碼

  • callname:回撥函式

  • amount:未知(必須)

  • 返回:JSON

財付通

API地址: http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443
引數:

  • chgmobile:手機號碼

  • 返回:xml

百付寶

API地址: https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443
引數:

  • phone:手機號碼

  • callback:回撥函式

  • cmd:未知(必須)

  • 返回:JSON

115

API地址: http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443
引數:

  • mobile:手機號碼

  • callback:回撥函式

  • 返回:JSON


有道api介面
介面地址:http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13892101112

引數說明:

  • type : 引數手機歸屬地固定為mobile

  • q : 手機號碼

返回XML格式:

<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="mobile">
<phonenum>13892101112</phonenum>
<location>陝西延安</location>
</product>
</smartresult>

或者

http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手機號碼

返回JSON格式:

fYodaoCallBack(1, {‘product’:'mobile’,'phonenum’:’13892101112′,’location’:'陝西 延安’} , ”);



舉例:

<?php
$mobile = "15018788111";  //要查詢的電話號碼
$content = get_mobile_area($mobile);
print_r($content);

function get_mobile_area($mobile){
    $sms = array('province'=>'', 'supplier'=>'');    //初始化變數
    //根據淘寶的資料庫呼叫返回值
    $url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobile."&t=".time();  
    
    $content = file_get_contents($url);
    $sms['province'] = substr($content, "56", "4");  //擷取字串
    $sms['supplier'] = substr($content, "81", "4");
    return $sms;
}



天氣預報介面

http://api.map.baidu.com/telematics/v3/weather?location=%E7%BB%A5%E5%BE%B7&output=json&ak=11ffd27d38deda622f51c9d314d46b17