Files
ukaiautomation/api/license/webuy/index.php
root 72d7a641f0 Add WeBuy license validation and usage logging API endpoints
- Add /api/license/webuy/ endpoint for license validation
- Add /api/license/webuy/log/ endpoint for usage logging
- Logs stored in /var/www/logs/webuy_usage.log

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-30 10:57:55 +00:00

14 lines
308 B
PHP

<?php
header('Content-Type: text/plain');
// Simple validation - customize to your needs
// Options: hardcoded, database lookup, check against allowed machine IDs, etc.
$valid = true; // Replace with your validation logic
if ($valid) {
echo 'valid';
} else {
echo 'License expired or invalid.';
}