<?php
echo "상은이는 얼굴도 천재";
exit;
ini_set('display_errors', "On");
require_once '../vendor/autoload.php';

$service = new PHPSupabase\Service(
    "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InZ6aWdiaG1mbGRmeW11b2dwaWV3Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MDQyNDMwMTAsImV4cCI6MjAxOTgxOTAxMH0.H0A2KVJ6_ZPkRKkS1LlXSskkcq-HTxqxijBIC2cxx5Y", 
    "https://vzigbhmfldfymuogpiew.supabase.co"
);


$db = $service->initializeDatabase('videos', 'video_id');

$newVideo = [
    'video_id' => 'test',
    'revision' => 1,
    'title' => 'title',
    'thumbnail' => 'http',
    'duration' => '11:00',
    'timedtext_url' => 'https',
    'artist' => 'artist',
    'rows' => 46
];

try{
    $data = $db->insert($newVideo);
    print_r($data); //returns an array with the new register data
}
catch(Exception $e){
    echo $e->getMessage();
}

