Add temporary Shopify OAuth install routes
Deploy / deploy (push) Successful in 14s

/shopify/install  → redirects to Shopify OAuth
/shopify/callback → exchanges code for access token and displays it

To be removed after token is captured.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Malek Tellissi
2026-09-11 03:12:20 +02:00
co-authored by Claude Sonnet 4.6
parent 7e9c43f2bf
commit 2b7913311a
2 changed files with 59 additions and 0 deletions
+5
View File
@@ -1,7 +1,12 @@
<?php
use App\Http\Controllers\ShopifyInstallController;
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return redirect('/dashboard', 301);
});
// Temporär: einmalige Shopify OAuth-Installation
Route::get('/shopify/install', [ShopifyInstallController::class, 'install']);
Route::get('/shopify/callback', [ShopifyInstallController::class, 'callback']);