Я пытаюсь интегрировать ebay API в мой проект Laravel. Но нет полного руководства о том, как вызывать функции API eBay, как загружать продукты в магазин eBay? Переполнение стека - это огромный портал, так что, пожалуйста, сообщите нам об этом.
Вот мой код контроллера eBay, который я беру из сети:
class EbayController extends Controller
{
private $products , $config , $service;
public function ebay_construct(Product $products)
{
$this->products = $products;
$this->config = Config::get('ebay');
// here we are getting ebay credentials
$this->service = new TradingService(array(
'apiVersion' => $this->config['tradingApiVersion'],
'devId' => $this->config['sandbox']['devId'],
'appId' => $this->config['sandbox']['devId'],
'certId' => $this->config['sandbox']['devId'],
'siteId' => env('EBAY-MY','207'),
'sandbox' => true,
));
}
}
//*here is my config directory file ebay.php
return array(
'sandbox' => array(
//here are ebay credentials
'devId' => 'xxx',
'appId' => 'xxx',
'certId' => 'xxx',
'userToken' =>
('xxx'),
'findingApiVersion' => '1.12.0' ,
'tradingApiVersion' => '949',
'shoppingApiVersion' => '871',
'halfFindingApiVersion' => '1.2.0'
);