我正在尝试使用prestashop API编辑一个产品,使用C#中的RestSharp,使用XML。文档说明如下:
To edit an existing resource: GET the full XML file for the resource you want to change (/api/customers/7), edit its content as needed, then PUT the whole XML file back to the same URL again.我正在尝试编辑/customers/1。
我的GET调用可以很好地检索数据。我现在正在对数据进行反序列化,根据需要对其进行编辑,然后重新保存为XML文件。一切似乎都很顺利。我现在尝试更改的字段只有名字和姓氏。其余的数据是原封不动的。下面是我使用的XML的一个副本:
<prestashop xmlns:xlink="http://www.w3.org/1999/xlink">
<customer>
<id><![CDATA[1]]></id>
<id_default_group xlink:href="http://heatherfazelinia.com/api/groups/3"><![CDATA[3]]></id_default_group>
<id_lang xlink:href="http://heatherfazelinia.com/api/languages/1"><![CDATA[1]]></id_lang>
<newsletter_date_add><![CDATA[2013-12-13 08:19:15]]></newsletter_date_add>
<ip_registration_newsletter></ip_registration_newsletter>
<last_passwd_gen><![CDATA[2014-06-20 16:56:30]]></last_passwd_gen>
<secure_key><![CDATA[6a9b9eab95448d74a026b869d8cd723e]]></secure_key>
<deleted><![CDATA[0]]></deleted>
<passwd><![CDATA[6028853eb1033578f7432015042fa486]]></passwd>
<lastname>newLastName</lastname>
<firstname>newFirstName</firstname>
<email><![CDATA[pub@prestashop.com]]></email>
<id_gender><![CDATA[1]]></id_gender>
<birthday><![CDATA[1970-01-15]]></birthday>
<newsletter><![CDATA[1]]></newsletter>
<optin><![CDATA[1]]></optin>
<website></website>
<company></company>
<siret></siret>
<ape></ape>
<outstanding_allow_amount><![CDATA[0.000000]]></outstanding_allow_amount>
<show_public_prices><![CDATA[0]]></show_public_prices>
<id_risk><![CDATA[0]]></id_risk>
<max_payment_days><![CDATA[0]]></max_payment_days>
<active><![CDATA[1]]></active>
<note></note>
<is_guest><![CDATA[0]]></is_guest>
<id_shop><![CDATA[1]]></id_shop>
<id_shop_group><![CDATA[1]]></id_shop_group>
<date_add><![CDATA[2014-08-01 13:20:37]]></date_add>
<date_upd><![CDATA[2014-08-01 13:20:37]]></date_upd>
<associations>
<groups node_type="groups">
<groups xlink:href="http://heatherfazelinia.com/api/groups/3">
<id><![CDATA[3]]></id>
</groups>
</groups>
</associations>
</customer>
</prestashop>该文件将另存为EditedXML.xml。同样,根据文档(我在上面粘贴的),为了编辑资源,我应该使用PUT将XML放回相同的URL (即/customers/1)。因此,在创建这个主题之前,我使用以下代码来尝试做到这一点:
// PUT call
var putRequest = new RestRequest("/customers/1", Method.PUT);
var body = System.IO.File.ReadAllText("EditedXML.xml");
request.AddBody(body);
IRestResponse putResponse = client.Execute(putRequest);
Console.WriteLine("Response: " + putResponse.Content);现在我的问题来了。我收到了错误(最初是HTML表单,我将其作为HTML打开,以便发布更具可读性:)
Method Not Implemented
GET to /api/customers/1 not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.我发现这个错误非常令人困惑,原因有二:
1)似乎即使我的请求是Method.PUT,它也被读取为GET?
2)它声称的东西甚至不是真的?我必须在相同的资源上调用GET函数才能获得初始数据?
为了防止任何人想要查看GET调用,这里有:
request = new RestRequest(Method.GET);
request.Resource = "/customers/1";
IRestResponse<customer> newResponse = client.Execute<customer>(request);有人知道这是怎么回事吗?我不确定如何调试它,我不确定PUT调用是否正在工作,或者我的PUT调用的参数是否错误,或者什么……
发布于 2014-09-08 16:09:55
我们遇到了类似的问题,我们必须使用下面的代码来正确地设置正文。
request.AddParameter("application/x-www-form-urlencoded", rawXml, ParameterType.RequestBody);发布于 2014-09-07 13:21:02
"request.AddBody(body);“似乎不起作用。
请检查此示例,了解我如何更新客户。
// GET customer with id 1
var client = new RestClient(PrestaShopBaseUrl);
client.Authenticator = new HttpBasicAuthenticator(PrestaShopAccount, "");
RestRequest request = new RestRequest("/customers/1", Method.GET);
IRestResponse response = client.Execute(request);
XmlDocument doc = new XmlDocument();
doc.LoadXml(response.Content);
doc.Save(@"Customer.xml");
// do something with customer file
// init XMLDocument and load customer in it
doc = new XmlDocument();
doc.Load(@"Customer.xml");
// Update (PUT) customer
request = new RestRequest("/customers/1", Method.PUT);
request.Parameters.Clear();
request.AddParameter("text/xml;charset=utf-8", doc.InnerXml, ParameterType.RequestBody);
response = client.Execute(request);https://stackoverflow.com/questions/25193918
复制相似问题