随机笑话
其他 官方文档
随机的笑话
基本说明:
接口地址:https://api.apiopen.top/getJoke
返回格式:json
请求方式:get
请求示例:https://api.apiopen.top/getJoke
请求参数说明:
名称 类型 必填 说明
- - - -
返回参数说明:
名称 类型 说明
- - -
JSON返回示例:
{
	"code": 200,
	"message": "成功!",
	"result": [{
		"sid": "29741116",
		"text": "一个愿意相信,一个愿意被相信!❤️被这段滑杆表演震撼到了…",
		"type": "video",
		"thumbnail": "http://wimg.spriteapp.cn/picture/2019/0830/5d69324b77f35_wpd.jpg",
		"video": "http://wvideo.spriteapp.cn/video/2019/0830/5d69324b77f35_wpd.mp4",
		"images": null,
		"up": "309",
		"down": "8",
		"forward": "9",
		"comment": "15",
		"uid": "18582843",
		"name": "左眼看起",
		"header": "http://wimg.spriteapp.cn/profile/large/2016/07/31/579d3e845ec9f_mini.jpg",
		"top_comments_content": "其实他俩还有很多方式,只是台上不允许",
		"top_comments_voiceuri": "",
		"top_comments_uid": "19949778",
		"top_comments_name": "来姐夫疼祢",
		"top_comments_header": "http://wimg.spriteapp.cn/profile/large/2018/12/03/5c0533d1e5fac_mini.jpg",
		"passtime": "2001-08-31 10:29:02"
	}]
}
服务级错误码参照
错误码 说明
- -
完整教学代码示例
import requests
import json
def main():
url = "https://api.apiopen.top/getJoke"
r = requests.post(url,data={"type":"text"},headers= {})
joke_list = r.json().get("result")
while True:
i = 0;
for joke_item in joke_list:
print(joke_item.get("text")+"\n")
i = i + 1
if input("%d/20"%(i))=="q":
return
if name=='main':
main()