<?php
define('API_KEY', 'xxxxx');
define('SECRET', 'xxxxx');
require_once('Zend/Loader/StandardAutoloader.php');
$loader = new \Zend\Loader\StandardAutoloader();
$loader->registerNamespaces(array(
'Zend' => __DIR__ .'/library/Zend',
'Shopify' => __DIR__ .'/library/Shopify'
));
$loader->register();
$client = new \Shopify\Client(array(
'shop' => $_GET['shop'],
'api_key' => API_KEY,
'secret' => SECRET
));
$ShopifyProduct = new \Shopify\Resource\Product(array(
'client' => $client
));
$products = $ShopifyProduct->getAll(array(
'fields'=> array('id'),
'collection_id' => '3782202'
));
print_r($products);
forked from mark1979smith/PHP-Shopify-API
-
Notifications
You must be signed in to change notification settings - Fork 0
milqmedia/mq-shopify
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Composer package Shopify API for use with Zendframework 2
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- PHP 100.0%