ios – 如何在Swift中进行Http get并设置httpHeader?

ios – 如何在Swift中进行Http get并设置httpHeader?,第1张

概述我尝试在Objective-C中创建HTTP Get. 它使用NSMutableURLRequest *请求;在Objective-C中,使用[request setHTTPMethod:@“GET”];选择GET或POST. 并通过以下代码设置标头: [request setValue:@"Application/json" forHTTPHeaderField:@"Accept"];[req 我尝试在Objective-C中创建http Get.

它使用NSMutableURLRequest *请求;在Objective-C中,使用[request sethttpMethod:@“GET”];选择GET或POST.

并通过以下代码设置标头:

[request setValue:@"Application/Json" forhttpheaderFIEld:@"Accept"];[request addValue:@"Application/Json" forhttpheaderFIEld:@"Content-Type"];[request addValue:[Nsstring stringWithFormat:@"Basic %@",USER_PWD] forhttpheaderFIEld:@"Authorization"];

我引用链接How to make an HTTP request in Swift?,它只显示以下代码:

let url = NSURL(string: "http://www.stackoverflow.com")let request = NSURLRequest(URL: url)NSURLConnection.sendAsynchronousRequest(request,queue: NSOperationQueue.mainQueue()) {(response,data,error) in    println(Nsstring(data: data,enCoding: NSUTF8StringEnCoding))}

但它没有选择Get或Post,也没有设置标题.
如何判断http方法是Get还是Post?以及如何设置标题?在斯威夫特

提前致谢.

解决方法
request.httpMethod = "POST"request.addValue("application/Json",forhttpheaderFIEld: "Content-Type")request.addValue("application/Json",forhttpheaderFIEld: "Accept")
总结

以上是内存溢出为你收集整理的ios – 如何在Swift中进行Http get并设置httpHeader?全部内容,希望文章能够帮你解决ios – 如何在Swift中进行Http get并设置httpHeader?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1098862.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存