如何通过添加自定义标题字段和参数来发出HEAD请求?

时间:2015-09-21 14:44:11

标签: ios objective-c iphone ipad http-headers

我需要在头字段中添加授权代码和id,并将序列号作为参数添加为服务器的HEAD请求。对于这个愚蠢的问题,我很抱歉,我对Objective C很新。

1 个答案:

答案 0 :(得分:0)

您可以使用此代码作为示例:

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://example.com"]];
[request setHTTPMethod:@"HEAD"];
[request setValue:@"123" forHTTPHeaderField:@"ID"];
//Other parameters like this
[NSURLSession sessionWithConfiguration:...