- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
标题:
let header = ["Content-Type" : "application/x-www-form-urlencoded", "Authorization" : "Basic " + self.basicAuth];
正文:
var body : [String : AnyObject] = [:];
let body = ["grant_type" : "client_credentials", "scope" : "MessageSender"];
请求和序列化:
private func makeHTTPPostRequest(path: String, header: [String : String], body: [String: AnyObject], onCompletion: @escaping ServiceResponse) {
let request = NSMutableURLRequest(url: NSURL(string: path)! as URL)
// Set the method to POST
request.httpMethod = "POST"
do {
// Set the POST body for the request
let jsonBody = try JSONSerialization.data(withJSONObject: body, options: .prettyPrinted)
request.httpBody = jsonBody
let session = URLSession.shared
request.allHTTPHeaderFields = header;
let task = session.dataTask(with: request as URLRequest, completionHandler: {data, response, error -> Void in
if let httpResponse = response as? HTTPURLResponse {
if let jsonData = data {
let json:JSON = JSON(data: jsonData)
print(response)
print(json)
onCompletion(json,httpResponse, error as NSError?)
} else {
onCompletion(JSON.null,HTTPURLResponse.init(), error as NSError?)
}
}
})
task.resume()
} catch {
onCompletion(JSON.null,HTTPURLResponse.init(), nil)
}
}
}
当请求完成后,它会触发 400 响应{
"error_description": "grant_type 参数是必需字段,并且必须是非空字符串。",
“错误”:“无效请求”
}
显然主体设置不正确,但我真的不知道为什么。我在其他应用程序中使用这段代码没有问题......同样的请求在 Postman 中就像魅力一样起作用。 postman 中的正文设置为 x-www-form-urlencoded 类型。也许 JSONSerialization 是错误的?
最佳答案
要使用 Content-Type: application/x-www-form-urlencoded;
发送 POST 请求,您需要创建一个类似 URL 查询的字符串,然后将其转换为数据。您的代码或任何 Swift 标准库函数都不具备该功能。你可能需要自己写,或者找合适的第三方库。 (当然JSONSerialization
在这里不合适,String不是JSON。)
给定 Dictionary<String, String>
,您可以这样做:
var body: [String: String] = [:]
body = ["grant_type": "client_credentials", "scope": "MessageSender"]
(简化...)
request.httpBody = body.map{"\($0)=\($1)"}.joined(separator: "&").data(using: .utf8)
//`body.map{"\($0)=\($1)"}.joined(separator: "&")` -> grant_type=client_credentials&scope=MessageSender
(严格...4.10.22.6 URL-encoded form data)
extension CharacterSet {
static let wwwFormUrlencodedAllowed = CharacterSet(charactersIn: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._*" + "+")
}
extension String {
var wwwFormUrlencoded: String {
return self
.replacingOccurrences(of: " ", with: "+")
.addingPercentEncoding(withAllowedCharacters: .wwwFormUrlencodedAllowed)!
}
}
class HTTPBody {
static func wwwFormUrlencodedData(withDictionary dict: [String: String]) -> Data {
return body
.map{"\($0.wwwFormUrlencoded)=\($1.wwwFormUrlencoded)"}
.joined(separator: "&").data(using: .utf8)!
}
}
request.httpBody = HTTPBody.wwwFormUrlencodedData(withDictionary: body)
(请记住,没有多少服务器将收到的表单数据解释为严格生成的。)
<小时/>还有一点,在这种情况下这不是一个关键问题,但你应该更好地使用 Swift 类而不是 NS-
一些东西:
typealias ServiceResponse = (JSON, HTTPURLResponse?, Error?)->Void
private func makeHTTPPostRequest(path: String, header: [String : String], body: [String: String], onCompletion: @escaping ServiceResponse) {
var request = URLRequest(url: URL(string: path)!)
// Set the method to POST
request.httpMethod = "POST"
// Set the POST body for the request (assuming your server likes strict form data)
request.httpBody = HTTPBody.wwwFormUrlencodedData(withDictionary: body)
let session = URLSession.shared
request.allHTTPHeaderFields = header;
let task = session.dataTask(with: request, completionHandler: {data, response, error -> Void in
if let httpResponse = response as? HTTPURLResponse {
if let jsonData = data {
let json:JSON = JSON(data: jsonData)
print(response)
print(json)
onCompletion(json, httpResponse, error)
} else {
onCompletion(JSON.null, httpResponse, error)
}
}
})
task.resume()
}
关于swift - 在 NSMutableURLRequest 中设置主体不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42578396/
基本上,我想实现SYNC功能;如果互联网连接不可用,数据将存储在本地 sqlite 数据库中。只要互联网连接可用,SYNC 就会开始工作。 现在,举个例子;本地存储5条记录,然后可以连接互联网。我想更
我创建 NSMutableUrlRequest 用于将数据发送到服务器,向其中添加所有必需的字段,然后添加用于发送的字符串,如下所示: [theRequest setHTTPBody:[postStr
早上好,我正在开发一个上传一些文件的应用程序;没有真正的问题,但只有一个大问题:如果我尝试上传 1GB 的文件,它会分配 1GB 的内存,你可以理解这不是一件好事。 这是我的代码:我将数据分配为 NS
我需要在 WebView 中通过 POST 发送大量数据(图像文件),因此我将 NSMutableURLRequest 与 setHTTPBody: 结合使用>. 问题:如果数据大小超过 3MB,应用
当设置 NSMutableURLRequest 的“授权” header 时,我的服务器对 header 的响应不包括该 header : [Host] => myhost.com [Content-
我正在使用xcode 5.1.1对我的iOS项目进行逻辑单元测试 对于下面的代码,NSLog的输出两次都是“Handles cookies NO”: NSMutableURLRequest *newR
Apple 的 iOS 文档 NSMutableURLRequest说: NSURLConnection makes a deep copy of each NSMutableURLRequest o
在您阅读本文之前,请记住我是一名 Objective C 程序员,正试图帮助一位对我的工作一无所知的 C# 程序员调试服务器问题。 我正在向 .net/c# 端发送一个 SOAP 数据包,服务器接收到
我尝试将 NSMutableURLRequest 的请求超时设置为 120,但它被忽略。请求超时在 90 秒内失败。谁能告诉我如何设置 NSMutableURLRequest 的请求超时? .我浏览了
我正在使用 NSMutableURLRequest 向服务器发出 HTTP 请求。现在,由于网络缓慢,需要一些时间才能获得响应,在这期间我想从我的应用程序注销。由于在注销之前已经向服务器发送了多个请求
我有一个带有 webservice 的字符串。但是当我将字符串添加到 NSMutableRequest 时,方法返回变为 null。这是我的代码, -(NSMutableURLRequest *)cr
NSString *url = [NSString stringWithFormat: @"http://apis.haoservice.com/weather?cityname=%@&key=%@"
我收到一条错误消息,提示“参数标签'(URL:, cachePolicy:, timeoutInterval:)' 不匹配任何可用的重载”,我不知道如何解决这个问题,有人知道吗?我正在使用 Swift
我有子类 NSMutableURLRequest 如下: class CustomNSMutableURLRequest: NSMutableURLRequest { convenience
我有 2 个独立的 NSOperationQueues,其中并行处理两个不同的 Web 服务操作。对于这两个 Web 服务,超时间隔都设置为 120 秒(2 分钟)。这两个 Web 服务在 Inter
我想向 NSMutableURLRequest 添加额外的字段(例如 NSString 值 requestID),以便在 时确定请求的正确处理程序>NSURLSession 完成它。 创建自定义 NS
我正在使用 NSMutableURLRequest 将 base64 编码的图像作为发布请求的一部分发送到服务器。我作为帖子正文记录的内容和服务器收到的内容不是一回事。服务器似乎得到了一个截断的版本,
如何使用 NSLog 打印 NSMutableURLRequest ? 最佳答案 .allHTTPHeaderFields 返回带有标题内容的字典: NSLog(@"%@", [request all
我尝试制作一个登录页面以使用户对网站进行身份验证。我尝试过类似的事情: NSURL *myURL = [NSURL URLWithString:@"https://www.freelancer
我正在尝试使用以下方法实现下载恢复功能setValue:forHTTPHeaderField。但每当我使用该方法时,我都会得到一个 [NSURLRequest setValue:forHTTPHead
我是一名优秀的程序员,十分优秀!