Masukkan nomor WhatsApp & token untuk mengakses hasil psikotesmu
Jika nomor WhatsApp Anda belum terdaftar di sistem, silahkan isi formulir pendaftaran berikut agar dapat mengakses hasil psikotes.
Login dengan nama & token admin untuk mengelola data peserta
Login untuk mengakses hasil psikotes siswa di group Anda
| No | Ringkasan Soal | Panduan Singkat | Nilai (0–2) |
|---|
| Kode | Subtes | SS | Bar | Klasifikasi | Deskripsi |
|---|
| No | Subtes (Gambar) | Aspek yang Diukur | Skor Mentah | Maks | Skor Skala | Kategori |
|---|
| No | Aspek yang Diukur | Skala | Profil | Kategori |
|---|
function doPost(e) {
const sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
const data = JSON.parse(e.postData.contents);
if (sheet.getLastRow() === 0) sheet.appendRow(data.headers);
sheet.appendRow(data.values);
return ContentService
.createTextOutput(JSON.stringify({status:'ok'}))
.setMimeType(ContentService.MimeType.JSON);
}
function doGet(e) {
return ContentService
.createTextOutput(JSON.stringify({status:'ready'}))
.setMimeType(ContentService.MimeType.JSON);
}
3. Klik Deploy → New Deployment