定制 dmamontov/gollos-restapi 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

dmamontov/gollos-restapi

最新稳定版本:1.0.0

Composer 安装命令:

composer require dmamontov/gollos-restapi

包简介

PHPClient to work with through Gollos Rest API.

README 文档

README

Latest Stable Version License Total Downloads

Gollos Rest API Client

This class can eanage e-commerce operations using the Gollos API.

It can send HTTP requests to the Gollos API Web server to perform several types of operations with customers, vendors, products, orders, etc..

Currently it can retrieve, add, update and delete products, groups, customers, vendors, products and orders.

Requirements

  • PHP version >5.0
  • curl

Available methods

  • getProducts, addProducts, updateProducts, removeProducts
  • getGroups, addGroups, updateGroups, removeGroups
  • getVendors, addVendors, updateVendors, removeVendors
  • getCustomers, addCustomers, updateCustomers, removeCustomers
  • getOrders, removeOrders

Installation

  1. Install composer

  2. Follow in the project folder:

composer require dmamontov/gollos-restapi ~1.0.0

In config composer.json your project will be added to the library dmamontov/gollos-restapi, who settled in the folder vendor/. In the absence of a config file or folder with vendors they will be created.

If before your project is not used composer, connect the startup file vendors. To do this, enter the code in the project:

require 'path/to/vendor/autoload.php';

Examples of use

Getting information about the order

$gollos = new GollosRestApi($key, $secretKey);
$order = $gollos->getOrders(array('id' => 25648));

Creating a client

$gollos = new GollosRestApi($key, $secretKey);
$customer = array(
    'first_name' => 'Test',
    'last_name'  => 'Test',
    'username' => 'dtest',
    'password' => uniqid(),
    'ip' => '85.198.127.82'
);
$result = $gollos->addCustomers($customer);

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2015-05-10