Skip to content

Instantly share code, notes, and snippets.

@gorgonite
gorgonite / track.php
Created January 25, 2024 07:42 — forked from muety/track.php
OwnTracks receiver script
<?php
$data = file_get_contents('php://input');
$json = json_decode($data);
header("Content-type: application/json");
if ($json->_type !== 'location') {
return;
}