技术文档
具体代码如下,相应的SOAP请求附于文末。
请注意,例程使用了下列SKU:
5364
你需要先调用 AddFixedPriceItem,使用这个SKU创建一个新商品。
using System; using eBay.Service.Call; using eBay.Service.Core.Sdk; using eBay.Service.Util; using eBay.Service.Core.Soap; namespace Trading_Samples { public class Revise { static void Main(string[] args) { Revise test = new Revise(); test.ReviseFixedPriceItem(); } private void ReviseFixedPriceItem() { //create the context ApiContext context = new ApiContext(); //set the User token context.ApiCredential.eBayToken = "Your token"; //set the server url context.SoapApiServerUrl = "https://api.sandbox.ebay.com/wsapi"; //enable logging context.ApiLogManager = new ApiLogManager(); context.ApiLogManager.ApiLoggerList.Add(new FileLogger("log.txt", true, true, true)); context.ApiLogManager.EnableLogging = true; //set the version context.Version = "673"; context.Site = SiteCodeType.Australia; ReviseFixedPriceItemCall reviseFP = new ReviseFixedPriceItemCall(context); ItemType item = new ItemType(); item.SKU = "5364"; //Basic (Title revision) item.Title = "Revising Title"; reviseFP.Item = item; reviseFP.Execute(); Console.WriteLine(reviseFP.ApiResponse.Ack + " Revised SKU " + reviseFP.SKU); } } } |
附件 | |
• ReviseFPItem Basic 673.xml |
答案对您有帮助吗?
是,对我很有帮助 | |
否,没解决我的问题 |