現在「完了」、進捗 0%。工程は全4件中 2件完了。
残りの工程: HinodeLab API連携コード作成 / HinodeLab API連携コードテスト
最新報告「保存用データベース書き込みAPI作成」(2024-03-14 17:11:32)
EPCに必要なメタリフのカウンターのAPI送信
https://plus-creative.xyz/nakata/click_log/
https://plus-creative.xyz/nakata/click_log/metaref.html
https://docs.google.com/document/d/18aGyRcDpwDviZW6YoHr0kO3aq5VKE50JaLtw8zWX1dI/edit
中田
CREATE TABLE "click_log_tb" (
"id" INTEGER NOT NULL,
"mataref" TEXT NOT NULL,
"clicked_at" TEXT NOT NULL,
"ip" TEXT,
"insert_date" TEXT,
"deleted_flg" INTEGER,
PRIMARY KEY("id" AUTOINCREMENT)
);
document.addEventListener('DOMContentLoaded', function() {
const apiUrl = 'https://plus-creative.xyz/nakata/click_log/api/index.php';
const mataref = window.location.href.split('?')[0];
const clickedAt = new Date().toISOString();
});