Comment on page
webfolder
웹폴더를 생성합니다.
post
https://api.file.kiwi
/v1/webfolder
웹폴더 생성
//javascript 예
const url = 'https://api.file.kiwi/v1/webfolder';
const options = {
method: 'POST',
mode:'cors',
headers: {Accept: 'application/json',
'Content-Type': 'application/json',
'x-api-key': '<<<<API_KEY>>>>'
},
body:'{"title":"제목"}'
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json.url))
.catch(err => console.error('error:' + err));
Last modified 2yr ago