api_app_upload_create
POST
/api/app/{app_slug}/upload/
const url = 'https://example.com/api/app/example/upload/';const options = {method: 'POST', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/app/example/upload/ \ --header 'Authorization: <Authorization>'上传文件到指定应用
app_slug
必填
string
无响应正文