我正在开发一个使用Prestashop Web服务运行的类。
我现在有一个问题,因为我不知道prestashop Web服务中的头部请求实际上是什么...
这是我的代码:
#region HEAD
public string Head() {
string requestURL = WebServiceURL + "/" + Table + "/" + TableID;
WebRequest wr = WebRequest.Create(requestURL);
wr.Method = "HEAD";
wr.ContentType = "application/xml";
wr.Credentials = new NetworkCredential(UserName, PassWord);
try {
HttpWebResponse response = (HttpWebResponse) wr.GetResponse();
return response.Headers.ToString();
}catch(Exception) { return ""; }
}
#endregion
哪个返回:
Vary: Host
Access-Time: 1391506047
PSWS-Version: 1.5.6.1
Execution-Time: 0.011
Content-Sha1: ...
Content-Type: text/xml;charset=utf-8
Date: Tue, 04 Feb 2014 09:27:26 GMT
Set-Cookie: ....; httponly
Server: Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7
X-Powered-By: PrestaShop Webservice
现在我的问题是,如果这是从Prestashop WebService获取头部数据的正确方法,并且此数据是否正确?
thx:)
数据看起来还不错。
我不会在您的代码中使用Content-Type
标头,因为即使在响应中,Head类似于获取,并且在请求中也没有发送消息主体,也只有标头数据才会提交给客户端。
检查HTTP方法定义。