2017 © Pedro Peláez
 

library php-sdk

image

shoppingfeed/php-sdk

  • Thursday, June 28, 2018
  • by shopping-feed
  • Repository
  • 8 Watchers
  • 0 Stars
  • 39 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 6 Open issues
  • 8 Versions
  • 3800 % Grown

The README.md

Welcome to the Shopping Feed PHP SDK

Install

  1. In your project root repository run bash composer require shoppingfeed/php-sdk
  2. Install a http client of your choice, we recommend using GuzzleHttp 6 as the SDK embed an adapter for this client. bash composer require guzzlehttp/guzzle ^6.3 You can also develop your own adapter, if you already have a http client library in your project (see the http adapter documentation for more information).

This will load the SDK library into the vendor repository.
And thanks to PSR-4 specification you should be able to access the SDK under the namespace \ShoppingFeed\Sdk., (*1)

Basic usage

Here are the three basic steps to use the SDK : 1. Authentication to start a new session 2. Retrieve the store(s) you want to manage from the session 3. Manage resources, (*2)

Authentication against the API

The Shopping Feed API requires that you are authenticated to perform any calls., (*3)

In order to make authenticated call, you should build the client like so:, (*4)

<?php
namespace ShoppingFeed\Sdk;

// Setup credentials to connect to the API, and create session
$credential = new Credential\Token('api-token');
/** @var \ShoppingFeed\Sdk\Api\Session\SessionResource $session */
$session = Client\Client::createSession($credential);

Accessing your stores

/** @var \ShoppingFeed\Sdk\Api\Session\SessionResource $session */
$store = $session->selectStore(1276);
$store->getName(); // test-store
$store->getId(); // 1276
// ... and so on

If you manage more than one store, you can use the store collection object, (*5)

/** @var \ShoppingFeed\Sdk\Api\Session\SessionResource $session */
// Get store collection
$stores = $session->getStores();
// Count the number of stores [int]
$stores->count();
// Get a particular store
$store = $stores->select('id-or-store-name');
// Loop over available stores
foreach ($stores as $store) {
    $store->getName(); 
}

SDK guides

SDK resources documentation

Generates XML compliant feed for import

The SDK is able to simplify XML feed creation by providing necessary tools., (*6)

Check the documentation at https://github.com/shoppingflux/php-feed-generator to learn how to create compliant feed., (*7)

The Versions

28/06 2018
28/06 2018
07/06 2018
23/04 2018
23/04 2018