Menu: Rename Capabilities to Services, update sitemap with web-scraping page
This commit is contained in:
13
oauth-callback.php
Normal file
13
oauth-callback.php
Normal 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>';
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user