Menu: Rename Capabilities to Services, update sitemap with web-scraping page

This commit is contained in:
root
2026-02-03 20:15:44 +00:00
parent 9c2ad9efe4
commit 72c9b4e9b4
13 changed files with 83 additions and 63 deletions

13
oauth-callback.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
if (isset($_GET['code'])) {
echo '<h2>QBO OAuth Success</h2>';
echo '<p><strong>Authorization Code:</strong></p>';
echo '<pre>' . htmlspecialchars($_GET['code']) . '</pre>';
echo '<p><strong>Realm ID:</strong></p>';
echo '<pre>' . htmlspecialchars($_GET['realmId'] ?? 'N/A') . '</pre>';
echo '<p>Copy the code above and give it to Emma.</p>';
} else {
echo '<h2>Error</h2>';
echo '<pre>' . htmlspecialchars($_GET['error'] ?? 'Unknown error') . '</pre>';
}
?>