我正在使用ASIHTTPRequest,並且我必須利用POST方法將一些值發送到服務器。所以,爲此我必須設置標題及其相應的值。ASIHTTPRequest向請求添加標頭
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request addRequestHeader:@"Referer" value:@"http://allseeing-i.com/"];
以下是需要被包含在我的應用程序標題,我怎麼可能包括一次用分號("Content-Type" = "text/html";
,"Keep-Alive" = "timeout=15, max=100";
等)
"Content-Type" = "text/html";
Date = "Wed, 21 Jun 2011 09:09:57 GMT";
"Keep-Alive" = "timeout=15, max=100";
Server = Apache;
"Transfer-Encoding" = Identity;
好的,但是我必須使用雙引號'「」'?例如:''Keep-Alive「=」timeout = 15,max = 100「;'< - 見雙引號 – Illep
我已經給我的答案添加了一個示例。 – JosephH