Skip to content

Instantly share code, notes, and snippets.

@muety
muety / track.php
Last active June 12, 2024 16:10
OwnTracks receiver script
<?php
$data = file_get_contents('php://input');
$json = json_decode($data);
header("Content-type: application/json");
if ($json->_type !== 'location') {
return;
}