Jeecg-boot后台服务API接口文档教程(爬虫接口练习)附报错解决
import requests
def crawl_api_interface(url, data):
try:
response = requests.post(url, json=data)
if response.status_code == 200:
print("请求成功,响应数据:", response.json())
else:
print("请求失败,状态码:", response.status_code)
except requests.exceptions.RequestException as e:
print("请求出错:", e)
# 示例调用
url = "http://localhost:8080/jeecg-boot/crawl/save"
data = {
"title": "爬虫接口练习",
"url": "http://example.com/page",
"type": 1,
"status": "normal"
}
crawl_api_interface(url, data)
这段代码使用Python的requests库来发送POST请求到指定的URL。其中,data
参数是需要传递给API接口的数据,通常是一个字典。如果请求成功,它会打印出响应的数据;如果请求失败,它会打印出状态码;如果发生异常,它会打印出异常信息。这个例子提供了一个简单的方法来测试API接口,并帮助开发者理解如何处理请求和响应。
评论已关闭