kintoone에서 편집 권한이 없어도 입력할 수 있는 방법
API 토큰을 사용하는 작업은 Administrator 작업으로 기록됩니다.
그래.
즉, 편집 권한이 없는 필드에 무엇을 입력해서 POST를 진행하려면 API 영패 인증을 사용할 수 있다👀
kintone UI Component와 kintone REST API Client를 사용했습니다.
kintone.events.on(["app.record.index.show"], (event) => {
const header = kintone.app.getHeaderMenuSpaceElement();
const button1 = new Kuc.Button({
text: "レコード追加1",
type: "submit",
});
const button2 = new Kuc.Button({
text: "レコード追加2",
type: "submit",
});
header.appendChild(button1);
header.appendChild(button2);
// kintone REST API Client使う場合
button1.addEventListener("click", async (event) => {
const rec = {
名前: { value: "なまえ" },
職業: { value: "しょくぎょう" },
};
const client = new KintoneRestAPIClient({
auth: { apiToken: "APIトークン(ベタ書きはよくない)" },
});
const res = await client.record.addRecord({ app: 490, record: rec });
});
// XMLHttpRequest を使ったリクエスト
button2.addEventListener("click", (event) => {
const body = {
app: kintone.app.getId(),
record: {
名前: {
value: "なまえ2",
},
職業: {
value: "しょくぎょう2",
},
},
// CSRF TOKEN: kintone上からAPI(POST, PUT, DELETE)を実行する場合に設定する必要あり
__REQUEST_TOKEN__: kintone.getRequestToken(),
};
const url = "https://{subdomain}.cybozu.com/k/v1/record.json";
const xhr = new XMLHttpRequest();
xhr.open("POST", url);
xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
xhr.setRequestHeader("Content-Type", "application/json");
xhr.setRequestHeader("X-Cybozu-API-Token", "APIトークン(ベタ書きはよくない)");
xhr.onload = function () {
if (xhr.status === 200) {
// success
console.log(JSON.parse(xhr.responseText));
} else {
// error
console.log(JSON.parse(xhr.responseText));
}
};
xhr.send(JSON.stringify(body));
});
});
Reference
이 문제에 관하여(kintoone에서 편집 권한이 없어도 입력할 수 있는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/juridon/articles/f1bd51a4719893텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)