我需要添加一个新商品(eBay沙箱)Net SDK,该商品从ebay站点进行了迭代,但无法正常工作(401错误:URL错误)。现在,我尝试使用SDK示例(consoleAddItem)
中的代码 [HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create([Bind(Include = "Id,ProdName")] Product product)
{
AddItemCall addItemCall = new AddItemCall(apiContext);
if (ModelState.IsValid)
{
product.Id = addItemCall.Item.ItemID;
product.ProdName = addItemCall.Item.Title;
db.Products.Add(product);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(product);
}