下载输出文件
curl --request GET \
--url https://bptest.mapleai.cc/api/open/files/content \
--header 'Authorization: Bearer <token>'import requests
url = "https://bptest.mapleai.cc/api/open/files/content"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://bptest.mapleai.cc/api/open/files/content', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}开放接口 / Open Files
下载输出文件
GET
/
api
/
open
/
files
/
content
下载输出文件
curl --request GET \
--url https://bptest.mapleai.cc/api/open/files/content \
--header 'Authorization: Bearer <token>'import requests
url = "https://bptest.mapleai.cc/api/open/files/content"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://bptest.mapleai.cc/api/open/files/content', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}