zoukankan      html  css  js  c++  java
  • 收集的各种接口地址

    位置aip:http://developer.baidu.com/map/carhome.htm

    通过坐标取用户位置(反Geocoding)http://api.map.baidu.com/telematics/v2/reverseGeocoding?location=116.305145,39.982368&ak=yourkey
    测距http://api.map.baidu.com/telematics/v2/distance?waypoints=118.77147503233,32.054128923368;116.3521416286,39.965780080447&ak=yourkey
    获取经纬度http://www.gpsspg.com/maps.htm
    天气查询http://api.map.baidu.com/telematics/v2/weather?location=北京&ak=yourkey

    http://api.map.baidu.com/telematics/v2/weather?location=经度,纬度&ak=yourkey

    查询周边商家http://api.map.baidu.com/telematics/v2/local?location=经度,纬度&keyword=类型&ak=yourkey&radius=半径&number=10
    导航地图http://developer.baidu.com/map/uri.htm
    http://api.map.baidu.com/direction?origin=latlan:34.264642646862,108.95108518068|name:我家&destination=大雁塔&mode=driving&region=西安&output=html&src=yourCompanyName|yourAppName  (mode可以为driving架车、transit公交、walking步行)

    2、Google地图API

    https://developers.google.com/maps/?hl=zh-cn

    申请密码https://code.google.com/apis/console
    经纬度解析http://maps.googleapis.com/maps/api/geocode/xml?latlng=23.416155105336312,116.6294002532959&sensor=false&language=zh-CN
    测距/测时https://developers.google.com/maps/documentation/distancematrix/

    http://maps.googleapis.com/maps/api/distancematrix/xml?origins=经度,纬度&destinations=经度,纬度&mode=walking&language=zh-CN&sensor=false

    (origine起点、destinations终点、sensor感应器是否启动gps、mode包含driving/walking/bicyilng、language语言、avoid避开highways高速tolls收费)
    查询周边商家https://developers.google.com/places/

    https://developers.google.com/places/documentation/search?hl=zh-CN

    https://maps.googleapis.com/maps/api/place/search/xml?location=经度,纬度&radius=3000&sensor=false&key=yourkey&keyword=餐馆&language=zh-CN

    3、高德地图API

    http://code.autonavi.com/index

    浏览器调用http://code.autonavi.com/URI/browser_guide
    接口格式http://mo.amap.com/?from=经度,纬度&to=经度,纬度&type=0&opt=1&dev=1

    4、小黄鸡(试用每天只能调100次,30美元/10万次调用)

    http://developer.simsimi.com/api?lang=zh_CN

    试用地址http://sandbox.api.simsimi.com/request.p (参数key密钥、text用户的问题、lc语言中文ch)

    5、百度翻译

    http://developer.baidu.com/ms/translate

    接口http://openapi.baidu.com/public/2.0/bmt/translate  (参数from源码语言ch中文、en英文、jp日语、auto自动)

    http://openapi.baidu.com/public/2.0/bmt/translate?client_id=yourApiKey&q=关键词&from=auto&to=auto

    6、快递查询
    申请KEY  http://www.aikuaidi.cn

    http://www.aikuaidi.cn/rest/?key=参数&order=快递单号&id=快递拼音&ord=排序方式&show=

    (圆通yuantong/申通shentong/EMSems/韵达yunda/顺丰shunfeng,ord排序asc/desc,show可以为JSON/XML/HTML)

    7、每日笑话(不限次数,不用申请KEY)

    http://api.94qing.com/?type=joke&msg=

    8、RSS订阅

    http://www.baidu.com/search/rss.html

    9、刮刮乐(只是源码地址,需要封装管理程序)

    http://kuro.tw/scratch.html

    10、第三方接口
    乐享微信http://www.wxapi.cn/  (收费,不开源)
    365微服务http://www.weduty.com  (收费,不开源)
    宾果科技https://github.com/takura/WeChat4DiscuzX-Binguo  (discuz论坛插件、名费、开源)
    小I机器人http://www.xiaoi.com  (智能聊天,收费,不开源)
    V5智能客服http://www.v5kf.com  (基础免费、增值收费、不开源)
    小九机器人http://www.xiaojo.com  (免费、开源)
    微擎http://www.we7.cc/  (免费、开源)

    11、百度BAE以及新浪SAE
    百度BAE  http://developer.baidu.com/  (免费创建10个应用,每天200M免费流量,数据库每月1G免费流量,缓存为memcache不免费1.6元/GB/天)
    计费  http://developer.baidu.com/dev#/price/charge
    新浪SAE  http://sae.sina.com.cn/ (免费创建10个应用)
    计费  http://sae.sina.com.cn/?m=devcenter&catId=155

    12、WAP在线生成

    http://siteapp.baidu.com/

    13、百度应用中心

    http://r2.mo.baidu.com/webapp_html.php?version=4_0&fn=webpage_flash

  • 相关阅读:
    并发运行的思维模型
    进程和线程的区别
    拿来主义
    同步组件合作和团队合作 让世界变得更美好
    strace a++;b++;a+b;
    System 88: GDB Overview
    numpy多维数组维度及添加轴的理解
    Numpy入门
    python列表list 和numpy.array区别
    数组的生成方法
  • 原文地址:https://www.cnblogs.com/zhangjin001/p/3637070.html
Copyright © 2011-2022 走看看