website/api/random_repo.php
2023-12-31 12:06:45 +01:00

7 lines
174 B
PHP

<?php
$repos = json_decode(file_get_contents("https://git.reim.ar/api/v1/repos/search"))->data;
$repo = $repos[array_rand($repos)];
header("Location: $repo->html_url");