有一个 export 的导出接口,可以将页面上数据导出为 excel 文件,做接口测试的时候如何获取导出的 excel 的文件名
from urllib.parse import unquote
url=""
kw={}
resp=request.post(url, json=kw)
filename=unquote(resp.headers.get('Content-Disposition'))
网上有一种方法,说从响应头(Content-Disposition)里面拿,但是我取到的是下面时间格式的 filename,不是实际导出生成的文件名,在此请教各位,有没有好方法
content-disposition: attachment;filename=2024-03-07T23:23:02.103.xlsx