百度图片API

百度图片有分类图片api和搜索api

- 百度图片分类图片api


以GET形式提交,返回JSON

URL:http://image.baidu.com/data/imgs?col=&tag=&sort=&pn=&rn=&p=channel&from=1

参数:col=大类&tag=分类&sort=0&pn=开始条数&rn=显示数量&p=channel&from=1

PS:sort可以为0和1,作用。。未知

例子:http://image.baidu.com/data/imgs?col=美女&tag=小清新&sort=0&pn=10&rn=10&p=channel&from=1

- 百度图片搜索图片api


以GET形式提交,返回JSON

URL:http://image.baidu.com/i?tn=baiduimagejson&word=&pn=&rn=&ie=utf8

参数:word=关键字&pn=开始条数&rn=显示数量

PS:ie=utf8 是字符编码,但是!有时候是gb18030,所以看情况而定转码

例子:http://image.baidu.com/i?tn=baiduimagejson&word=周杰伦&pn=10&rn=10&ie=utf8

你可能感兴趣的:(百度图片API)