使用特定的 shopify 商店数据在 laravel 中调用 Shopify api?
Call Shopify api in laravel with Particular shopify store data?
- shopify public api laravel Php。 运行 应用到此类型的错误显示在 laravel 7
Public API
这假设您使用正确的密钥和重定向 URI 在合作伙伴的仪表板中正确设置了您的应用程序。
休息(同步)
对于 REST 调用,需要商店域和访问令牌。
use Osiset\BasicShopifyAPI\BasicShopifyAPI;
use Osiset\BasicShopifyAPI\Options;
use Osiset\BasicShopifyAPI\Session;
// Create options for the API
$options = new Options();
$options->setVersion('2020-01');
// Create the client and session
$api = new BasicShopifyAPI($options);
$api->setSession(new Session('example.myshopify.com', 'access-token-here'));
// Now run your requests...
$result = $api->rest(...);
- shopify public api laravel Php。 运行 应用到此类型的错误显示在 laravel 7
Public API 这假设您使用正确的密钥和重定向 URI 在合作伙伴的仪表板中正确设置了您的应用程序。
休息(同步) 对于 REST 调用,需要商店域和访问令牌。
use Osiset\BasicShopifyAPI\BasicShopifyAPI;
use Osiset\BasicShopifyAPI\Options;
use Osiset\BasicShopifyAPI\Session;
// Create options for the API
$options = new Options();
$options->setVersion('2020-01');
// Create the client and session
$api = new BasicShopifyAPI($options);
$api->setSession(new Session('example.myshopify.com', 'access-token-here'));
// Now run your requests...
$result = $api->rest(...);