共计 895 个字符,预计需要花费 3 分钟才能阅读完成。
一、开明接口
新闻头条接口服务应用的聚合数据提供的收费接口,每天能够 100 次收费调用。能够通过 https://www.juhe.cn/docs/api/id/235 注册及开明。
二、Python 发动接口申请
#!/usr/bin/python
# -*- coding: utf-8 -*-
import urllib, urllib2, sys, json
reload(sys)
sys.setdefaultencoding('utf-8')
url = 'http://v.juhe.cn/toutiao/index'
params = {"type": "top", # 头条类型,top( 头条,默认),shehui(社会),guonei(国内),guoji(国内),yule(娱乐),tiyu(体育)junshi(军事),keji(科技),caijing(财经),shishang(时尚)
"key": "xxxxxxx", # 您申请的接口 API 接口申请 Key
}
querys = urllib.urlencode(params)
request = urllib2.Request(url, data=querys)
response = urllib2.urlopen(request)
content = response.read()
if (content):
try:
result = json.loads(content)
error_code = result['error_code']
if (error_code == 0):
data = result['result']['data']
for i in data:
# 更多字段可参考接口文档
print("新闻标题:%sn 新闻工夫:%sn 新闻链接:%snn" % (i['title'], i['date'], i['url']))
else:
print("申请失败:%s %s" % (result['error_code'], result['reason']))
except Exception as e:
print("解析后果异样:%s" % e)
else:
# 可能网络异样等问题,无奈获取返回内容,申请异样
print("申请异样")
三、返回后果
正文完