我正在使用Sandbox Auth。令牌在这里它总是发送给我一个这样的错误。
错误:验证令牌无效。 API请求中的身份验证令牌验证失败。
但是如果我使用我的Production Auth。令牌似乎在锻炼,完全没有问题。
我还检查了我的Sandbox令牌的有效性,截止日期是2016年11月,这已经足够了。有人可以帮我解决我的问题吗?提前谢谢。
以下是代码:
require __DIR__.'/../vendor/autoload.php';
$config = require __DIR__.'/../configuration.php';
use \DTS\eBaySDK\Constants;
use \DTS\eBaySDK\Trading\Services;
use \DTS\eBaySDK\Trading\Types;
use \DTS\eBaySDK\Trading\Enums;
$service = new Services\TradingService(array(
'apiVersion' => $config['tradingApiVersion'],
'siteId' => Constants\SiteIds::US
));
$request = new Types\GetMyeBaySellingRequestType();
$request->RequesterCredentials = new Types\CustomSecurityHeaderType();
$request->RequesterCredentials->eBayAuthToken = $config['sandbox']['userToken'];
$request->ActiveList = new Types\ItemListCustomizationType();
$request->ActiveList->Include = true;
$request->ActiveList->Pagination = new Types\PaginationType();
$request->ActiveList->Pagination->EntriesPerPage = 10;
$request->ActiveList->Sort = Enums\ItemSortTypeCodeType::C_CURRENT_PRICE_DESCENDING;
$pageNum = 1;
do {
$request->ActiveList->Pagination->PageNumber = $pageNum;
$response = $service->getMyeBaySelling($request);
echo "==================\nResults for page $pageNum\n==================\n";
if (isset($response->Errors)) {
foreach ($response->Errors as $error) {
printf("%s: %s\n%s\n\n",
$error->SeverityCode === Enums\SeverityCodeType::C_ERROR ? 'Error' : 'Warning',
$error->ShortMessage,
$error->LongMessage
);
}
}
if ($response->Ack !== 'Failure' && isset($response->ActiveList)) {
foreach ($response->ActiveList->ItemArray->Item as $item) {
printf("(%s) %s: %s %.2f\n",
$item->ItemID,
$item->Title,
$item->SellingStatus->CurrentPrice->currencyID,
$item->SellingStatus->CurrentPrice->value
);
}
}
$pageNum += 1;
} while(isset($response->ActiveList) && $pageNum <= $response->ActiveList->PaginationResult->TotalNumberOfPages);
对David T. Sadler爵士的信任
答案 0 :(得分:4)
默认情况下,SDK将连接到生产API。如果要使用沙箱API,只需在创建 TradingService 对象时将 true 传递给沙箱配置选项。所有configuration options的列表都可用。
$service = new Services\TradingService(array(
'apiVersion' => $config['tradingApiVersion'],
'siteId' => Constants\SiteIds::US,
'sandbox' => true
));
答案 1 :(得分:1)
根据所提供的内容,我几乎可以保证您将请求发送到
https://api.ebay.com/ws/api.dll(这就是生产认证的原因)
而不是发送到
https://api.sandbox.ebay.com/ws/api.dll(其中sandox auth 应该工作)
附加说明
确保所有三个开发者ID都是沙盒,而不是生产,因为它们确实不同
另外值得注意的是,沙箱比生产有更多的错误,所以我个人只是用生产来设置我的电话和东西。