PHP code example of lsv / food-market-integration-wrapper

1. Go to this page and download the library: Download lsv/food-market-integration-wrapper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

lsv / food-market-integration-wrapper example snippets


use Lsv\FoodMarketIntegration\Authenticate;
use Lsv\FoodMarketIntegration\Request;

$userAccessToken = 'your user access token';
$serverAccessToken = 'your server access token';
$authenticate = new Authenticate($userAccessToken, $serverAccessToken);
Request\AbstractRequest::setAuthentication($authenticate);
// Your requests

use Lsv\FoodMarketIntegration\Request;

$marketCodeIdentifier = 'your market code identifier';
$marketOrderIdentifier = 'order id';

$request = new Request\GetOrder($marketCodeIdentifier, $marketOrderIdentifier);
$response = $request->request();
# Response is now an object of Response\Order

use Lsv\FoodMarketIntegration\Request;

$client = $YourPSR18Client;
Request\AbstractRequest::setHttpClient($client);
// Your requests