2016-07-13 5 views
-1

vor allem, Entschuldigung für diese dumme Frage , aber ich bin neu, große Commerce API zu verwenden, und ich suchte und fand viele Threads, aber funktioniert nicht für mich. der Komponist erstellt ein Verzeichnis Anbieter dann seine Wurzel Ich habe eine Datei index.php erstellen und diesen Code setzen, aber es ist mir die leere SeiteBigCommerce API starten

<?php 
    require 'vendor/autoload.php'; 

    use Bigcommerce\Api\Client as Bigcommerce; 

    Bigcommerce::configure(array(

    'store_url' => 'https://store-xxxx.mybigcommerce.com/api/v2/', 
    'username' => 'xxxx', 
    'api_key' => 'xxxx' 
    )); 
    Bigcommerce::verifyPeer(false); 

    $ping = Bigcommerce::getTime(); 

    if ($ping) echo $ping->format('H:i:s'); 


    $filter = array("page" => 3, "limit" => 30); 

    $products = Bigcommerce::getProducts($filter); 

    ?> 

Please, someone, explain all steps with the easy understandable process ? 
Sometimes it's giving 
Fatal error: Class 'Bigcommerce_Api' not found in C:\xampp\htdocs\bigcommerceapi\index.php on line 30 

I followed this community 
https://c9.io/oschino/bigcommerce-api-php-oauth 
when I clicking the single file link it's showing 404 not found where from I can download big commerce.php file 

Also, I want to know if composer created a whole PHP API then is it it is necessary to download big commerce PHP API from Github ? 
I have checked the folder structure and files are same in vendor folder and big commerce git hub files. 

Bitte helfen

Antwort

0

I-Lösung der bigcoomerce store bekam URL-Aufruf Prozess wird nun geändert

änderte ich Bigcommerce :: configure (array (

'store_url' => 'https://store-xxxx.mybigcommerce.com/api/v2/', 
'username' => 'xxxx', 
'api_key' => 'xxxx' 
)); 

mögen diese

Bigcommerce :: configure (array (

'store_url' => 'https://store-xxxx.mybigcommerce.com', 
'username' => 'xxxx', 
'api_key' => 'xxxx' 
)); 
Verwandte Themen