Bigcommerce rest api -
i wrote small application on local wamp server interact bigcommerce.
i have working on local machine when moved live server api not responding anything.
here connection code
include 'bigcommerce-api-php-master/bigcommerce-api-php-master/bigcommerce.php'; use bigcommerce\api\client bigcommerce; bigcommerce::configure(array('store_url' => $url,'username' => $username,'api_key' => $token)); bigcommerce::setcipher('rc4-sha'); bigcommerce::verifypeer(false); $categorycount = ceil(bigcommerce::getcategoriescount() / $limit); $errors = bigcommerce::getlasterror(); print_r($errors);
headache!! appreciated.
your code fine must include folder: bigcommerce-api-php-master/src/bigcommerce/api.php because contains queries api
Comments
Post a Comment