我不认为你可以。我不认为它旨在同时搜索超过 1 个网站。但是您可以尝试使用不同的全局 ID 搜索“x”次。
这就是我使用 ebay API (FindingAPI) 的方式:
ClientConfig config = new ClientConfig();
config.GlobalId = "EBAY-GB";
config.EndPointAddress = "http://svcs.ebay.com/services/search/FindingService/v1";
config.ApplicationId = Options.generalOptions.DeveleporKey;
FindingServicePortTypeClient client = FindingServiceClientFactory.getServiceClient(config);
这就是我用来进行搜索的内容:
client.findItemsAdvanced(request);
因此,您创建了不同的客户端(1 US 和 1 GB)并执行以下操作:
var responseGB = GBclient.findItemsAdvanced(request);
var responseUS = USclient.findItemsAdvanced(request);
希望这会有所帮助,但不知道您使用的是什么 API。