PHP code example of zero1 / magento2-rest-client
1. Go to this page and download the library: Download zero1/magento2-rest-client 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/ */
zero1 / magento2-rest-client example snippets
$magento = new Magento2\Client(
'https://www.mysite.com',
'username',
'password'
);
$products = $magento->getProducts([
[['type_id', 'simple', 'eq']],
[['status', 1, 'eq']],
[['visibility', 1, 'gt']]
]);