标签 API 下的文章

Awesome APIs
中国国内可用API合集
支付宝数据接口
想写个 App 练手,有什么有趣的 API 接口推荐吗?
Github:GitHub API v3
Weibo:API - 微博API
Twitter:https://dev.twitter.com/
Dribbble:Dribbble Developer
V2EX API 接口
Angelist:API - AngelList
Nytimes:http://developer.nytimes.com/
(这个是从西乔的文章听说的),使用这个API,开发者可以调用到几百万份结构化过的数据,从1981 年至今,纽约时报报道的事件,畅销书,甚至房地产等等。
Instagram:https://www.instagram.com/developer/
聚合数据 http://free.juhe.cn/
Web Service(WEB服务) http://www.webxml.com.cn/zh_cn/web_services.aspx
百度API服务 http://apistore.baidu.com/
Apix https://www.apix.cn/
和风天气 http://www.heweather.com/

与翻译相关的。
有道翻译:http://fanyi.youdao.com/openapi
金山词霸:http://open.iciba.com/?c=wiki
百度翻译: http://api.fanyi.baidu.com/api/trans/product/apidoc

快递鸟 http://www.kdniao.com/
TMDb https://www.themoviedb.org/documentation/api
笑话的RESTful API http://www.icndb.com/api/
豆瓣API https://developers.douban.com/wiki/?title=guide
https://developers.douban.com/wiki/?title=api_v2
豆瓣Movie API Doc https://developers.douban.com/wiki/?title=movie_v2

API 搜索

APIs.io - the API search engine
ProgrammableWeb
public-apis
应用 Api
https://github.com/TonnyL/Awesome_APIs Chinese Part && Global Part

百度翻译:
https://sp1.baidu.com/5b11fzupBgM18t7jm9iCKT-xh_/sensearch/selecttext?q=%E4%BD%A0%E5%A5%BD

知乎日报-简要版 API:

http://news-at.zhihu.com/api/4/news/latest 今日热文
http://news.at.zhihu.com/api/4/news/before/ 更多往日热文

上面这两个地址是我们今天要做的首页的API,我们将发起request请求,拿回数据做渲染。
知乎日报 API 分析

api

Dingo API




来自 http://www.xhily.cn/archives/157.html
bing搜索首页的壁纸都是每日一换(http://cn.bing.com/

想要这种效果其实一段代码就ok

<?php
    $str=file_get_contents('http://cn.bing.com/HPImageArchive.aspx?idx=0&n=1');
    if(preg_match("/<url>(.+?)<\/url>/ies",$str,$matches)){
        $imgurl='http://cn.bing.com'.$matches[1];
    }
    if($imgurl){
        header('Content-Type: image/JPEG');
        @ob_end_clean();
        @readfile($imgurl);
        @flush(); @ob_flush();
        exit();
    }else{
        exit('error');
    }
?>

访问 https://m69w.com/demo/bing.php

可以用作背景图片之类的

文章转自http://johnzhang.cn/2015/02/13/get-bing-daily-picture/ 文中代码出错 已经修改

下载地址 bing.7z

Bing 每日图片获取