I am using https://github.com/osiset/laravel-shopify package to manage Shopify API with laravel 8 and facing the following error:
HTTP/1.1 403 Forbidden { "errors": "App must be extendable to create a storefront access token." }
Trying the following:
$shop = Auth::user();
$orders = $shop->api()->rest('POST', '/admin/api/2021-01/storefront_access_tokens.json', ['storefront_access_token' => ['title' => 'mobile']]);
dd($orders);