Skip to content

Instantly share code, notes, and snippets.

View alchemistake's full-sized avatar

Caner Çalışkaner alchemistake

View GitHub Profile
@alchemistake
alchemistake / autodone.js
Last active October 13, 2022 06:13
Todoist Auto-Done Script for iOS
let task_get = new Request(`https://api.todoist.com/rest/v2/tasks/${task_id}`);
task_get.method = "get";
task_get.headers = {
"Authorization": `Bearer ${bearer_token}`,
"Content-Type": "application/json"
};
let res = await task_get.loadJSON();
let due = res["due"]["date"];
let due_date = new Date(due);