Download the PHP package imclarky/tesco-api without Composer

On this page you can find all versions of the php package imclarky/tesco-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package tesco-api

Tesco API - PHP

A PHP Client for the Tesco Supermarket API

Packagist Travis (.org) StyleCI Coveralls github Packagist

Contents

Getting Started

Installation

To install, simply require the package using composer:

Requirements

API Key

You will first need to register for an API Key from Tesco's Developer Portal, by signing up for an account and subscribing the General APIs.

Simple Example

Here is a simple example of a request to the Tesco API to find grocerys related to the word chocolate:

Usage

Requests

There are two ways of creating requests to the API. The first, as shown above, is to use the base TescoApi class.

The base class is initialized with your API Key:

This base class has 3 main functions, each of which will return a new instance of the related request class.

Alternatively you can create new instances of the Request classes directly, again passing the API key asa a parameter.

Each request object has different methods to add query paramters to the API request.


Grocery Request

addSearchTerm(string $searchTerm)
Add a search term to search for. Providing a search term is required; if no term is added when the request is sent, the Request class will throw a RequestException.


Product Request

addGtin(string $gtin)
Add a product's GTIN/EAN-13 number to the search list.

addTpnb(string $tpnb)
Add a product's Tesco Product Number Base (TPNB) number to the search list.

addTpnc(string $tpnc)
Add a product's Tesco Product Number Consumer (TPNC) number to the search list.

addCatId(string $catId)
Add a product's Catalogue ID to the search list.

Each of these functions returns the request object instance to allow chaining the above methods.


Store Location Request

addSort(string $type, string $value)
Add a Sort query parameter. Currently the only sort type is Near; Which sorts the results by distance from the given location.

Type Description Example Values
SORT_NEAR Sort the results by the distance from the given location - ascending London, UK
SE11 5AP

addFilter(string $type, $value)
Add a Filter query parameter to filter the results.

Type Description Example Values
FILTER_NAME The name of the store Lakeside Extra
Charing Cross Express
FILTER_BRANCHNUMBER The branch number of the store 3482
2593
FILTER_ISOCOUNTRYCODE The ISO Country Code the store is located in gb
x-uk
im
FILTER_FACILITY A facility at the store Facility::FACILITY_ATM
Facility::FACILITY_CAR_WASH
FILTER_CATEGORY A store category Store::CATEGORY_STORE
Store::CATEGORY_CFC
FILTER_TYPE A store type Store::TYPE_EXTRA
Store::TYPE_EXPRESS
FILTER_STATUS The status of the store Trading

Normally a string will be passed in the $value parameter - this will add the term and will be used in a AND expression in the where clause. However, if an array is passed, the values of the array will be treated as an OR expression. For example:

addLike(string $type, $value, bool $start = false)
Add a Like query paramter to filter the results. This is exactly the same as Filters, except the API will do a full text search for the the value. If $start is set to true, the search will only return results where the term is at the start.


Pagination

Both the Store Location and Grocery request results are returned in pages. You can set the offset and limit on these request, as well as navigate the pages.

setLimit(int $limit)
Set the limit of the request - ie, how many results to return. If this function is never called, then the default value of 10 is used.

setOffset(int $offset)
Set the offset of the request - ie, how many results to offset. If this function is never called, then the default value of 0 is used.

getNextPage()
Get the next page of results

getPrevPage()
Get the previous page of results.

goToPage(int $page)
Go to a specific page of results.

Responses

Each successful request will return a related response object. Eg a StoreLocationRequest returns a StoreLocationResponse. Each response object will contain information like response headers, response status, etc. as well as the models generated from the response data (see below).

Models

Models are generated from the responsed data retrieved from a request.

Grocery


Product


Store


Opening Times and Exceptions


Facility


Guideline Daily Amounts (GDAs)


Nutrition


All versions of tesco-api with dependencies

PHP Build Version
Package Version
Requires php Version ^7.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package imclarky/tesco-api contains the following files

Loading the files please wait ....