承接 edwin-luijten/shopify-client 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

edwin-luijten/shopify-client

Composer 安装命令:

composer require edwin-luijten/shopify-client

包简介

A client to communicate to the Shopify api.

README 文档

README

Latest Version Software License Build Status Code Coverage Quality Score Total Downloads

This package provides a client to communicate with the Shopify api.

Install

Via Composer

$ composer require edwin-luijten/shopify-client

Usage

Creating a Shopify application

Read the following documentation: https://help.shopify.com/api/getting-started

Using the Client

$client = new \ShopifyClient\Client(new \ShopifyClient\Config($domain, $key, $secret));
$client->orders->get(1);  
$client->orders->all();
$client->orders->all([
    'page' => 2,
]);
  
$client->orders->metafields->all($orderId);

Throttle request to prevent bucket overflow:

$totalProducts = $client->products->count();
$perPage = 50;
$pages = $totalProducts <= 50 ? 1: round($totalProducts / $perPage);
  
for($i = 0; $i <= $pages; $i++) {
    $products = \ShopifyClient\Request::throttle(function($client, $i) {
        return $client->products->all([
            'page' => $i,
        ]);
    });
}

Add your own resources

Check https://github.com/Edwin-Luijten/shopify-client/tree/develop/src/Resource for how to create your own resource.

$config = new \ShopifyClient\Config($domain, $key, $secret, [
  'helloWorld' => \HelloWorldClass::class,
];
$client = new \ShopifyClient\Client($config);

Implemented resources

  • Abandoned checkouts
  • Article (Accessible trough blogs)
  • Blog
  • CarrierService
  • Checkout
  • Collect
  • CollectionListing
  • Comment
  • Country
  • CustomCollection
  • Customer
  • CustomerAddress (Accessible trough customers)
  • CustomerSavedSearch
  • DiscountCode (Accessible trough priceRules)
  • DraftOrder
  • Event
  • Fulfillment
  • FulfillmentEvent
  • FulfillmentService
  • Gift Card (Shopify Plus)
  • Location
  • Marketing Event
  • Metafield (products, variants, orders, blogs, articles)
  • Multipass (Shopify Plus)
  • Order
  • Order Risks (Accessible trough orders)
  • Page
  • Policy
  • PriceRule
  • Product
  • Product Image (Accessible trough products)
  • Product Variant (Accessible trough products)
  • ProductListing
  • Province (Accessible trough countries)
  • RecurringApplicationCharge
  • Redirect
  • Refund
  • Report
  • ResourceFeedback
  • ScriptTag
  • Shipping Zone
  • Shop
  • SmartCollection
  • Storefront Access Token
  • Theme
  • Transaction
  • UsageCharge
  • User (Shopify Plus)
  • Webhook
  • ShopifyQL

Testing

Set some environment variables first:

  • SHOPIFY_DOMAIN
  • SHOPIFY_KEY
  • SHOPIFY_SECRET
  • SHOPIFY_RATE_LIMIT
  • SHOPIFY_PRODUCT_VARIANT_ID
$ ./vendor/bin/phpunit

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email :author_email instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

edwin-luijten/shopify-client 适用场景与选型建议

edwin-luijten/shopify-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 30 次下载、GitHub Stars 达 0, 最近一次更新时间为 2017 年 10 月 03 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 edwin-luijten/shopify-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 edwin-luijten/shopify-client 我们能提供哪些服务?
定制开发 / 二次开发

基于 edwin-luijten/shopify-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 30
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-10-03