我如何使用生产帐户设置 eBay 交易 api?
How can i setup eBay trading api with production account?
我在 eBay 中有商家帐户(生产)和开发者帐户(沙盒)。
我只需要在 Sandbox 上工作,但我如何将该代码与生产帐户相关联。
$this->service = new Services\TradingService(array(
'apiVersion' => '911',
'siteId' => 0,
'appId' => '',
'sandbox' => false,
'certId' => '',
'devId' => '',
//'debug' => true
));
How can i find appId, certId and devId in production account?
转到 eBay 开发者网站并请求一组生产密钥。
如果您使用沙箱密钥,我应该可以只交换您的生产密钥。
我在 eBay 中有商家帐户(生产)和开发者帐户(沙盒)。 我只需要在 Sandbox 上工作,但我如何将该代码与生产帐户相关联。
$this->service = new Services\TradingService(array(
'apiVersion' => '911',
'siteId' => 0,
'appId' => '',
'sandbox' => false,
'certId' => '',
'devId' => '',
//'debug' => true
));
How can i find appId, certId and devId in production account?
转到 eBay 开发者网站并请求一组生产密钥。
如果您使用沙箱密钥,我应该可以只交换您的生产密钥。